TabControl::ItemType Enum
Special tab item, or collection of items.
enum ItemType
{
AllItems = DG_TAB_ALLITEMS,
FirstItem = DG_TAB_FIRSTITEM,
LastItem = DG_TAB_LASTITEM
};
Value Definitions
- AllItems
-
All items of the tab control.
- FirstItem
-
First item of the tab control.
- LastItem
-
Last item of the tab control.
Description
Some methods expect tabItem, which can be one of these enumeration values too. Typically,
set methods accept all values (including AllItems), get methods accept only FirstItem
and LastItem.