The TabCtrl_GetCurFocus macro returns the index of the item that has the focus in a tab control. You can use this macro or explicitly send the TCM_GETCURFOCUS message.
int TabCtrl_GetCurFocus(
HWND hwnd | |
); |
Parameters
hwnd
Handle to the tab control.
Return Values
Returns the index of the tab item that has the focus
Remarks
The item that has the focus may be different than the selected item.
See Also