The following window styles are specific to tab controls.
TCS_BUTTONS | Specifies that tabs appear as buttons and no border is drawn around the display area. |
TCS_FIXEDWIDTH | Specifies that all tabs are the same width. This style cannot be combined with the TCS_RIGHTJUSTIFY style. |
TCS_FOCUSNEVER | Specifies that the tab control never receives the input focus. |
TCS_FOCUSONBUTTONDOWN | Specifies that tabs receive the input focus when clicked. |
TCS_FORCEICONLEFT | Aligns icons with the left edge of each fixed-width tab. This style can only be used with the TCS_FIXEDWIDTH style. |
TCS_FORCELABELLEFT | Aligns labels with the left edge of each fixed-width tab; that is, it displays the label immediately to the right of the icon instead of centering it.
This style can only be used with the TCS_FIXEDWIDTH style, and it implies the TCS_FORCEICONLEFT style. |
TCS_MULTILINE | Displays multiple rows of tabs, if necessary, so all tabs are visible at once. |
TCS_OWNERDRAWFIXED | Specifies that the parent window is responsible for drawing tabs. |
TCS_RAGGEDRIGHT | Does not stretch each row of tabs to fill the entire width of the control. This style is the default. |
TCS_RIGHTJUSTIFY | Increases the width of each tab, if necessary, so that each row of tabs fills the entire width of the tab control.
This window style is ignored unless the TCS_MULTILINE style is also specified. |
TCS_SINGLELINE | Displays only one row of tabs. The user can scroll to see more tabs, if necessary. This style is the default. |
TCS_TABS | Specifies that tabs appear as tabs and that a border is drawn around the display area. This style is the default. |
TCS_TOOLTIPS | Specifies that the tab control has a tooltip control associated with it. For more information about tooltip controls, see Tooltip Controls. |