Vcl.ComCtrls.TListGroupState
Delphi
TListGroupState = (
lgsNormal,
lgsHidden,
lgsCollapsed,
lgsNoHeader,
lgsCollapsible,
lgsFocused,
lgsSelected,
lgsSubseted,
lgsSubSetLinkFocused
);
C++
enum DECLSPEC_DENUM TListGroupState : unsigned char { lgsNormal, lgsHidden, lgsCollapsed, lgsNoHeader, lgsCollapsible, lgsFocused, lgsSelected, lgsSubseted, lgsSubSetLinkFocused };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | Vcl.ComCtrls |
Description
TListGroupState describes the list group's current state.
A combination of TListGroupState flags represents the TListGroup's current state.
Flags can have the following values:
| Value | Meaning |
|---|---|
|
lgsNormal |
All groups are expanded, all items are displayed, and the group name is visible. |
|
lgsHidden |
The group is hidden. |
|
lgsCollapsed |
The group is collapsed. Available for Windows Vista, Windows 7, or later Windows operating systems only. |
|
lgsNoHeader |
The header is not visible. Available for Windows Vista, Windows 7, or later Windows operating systems only. |
|
lgsCollapsible |
The group can be collapsed. Available for Windows Vista, Windows 7, or later Windows operating systems only. |
|
lgsFocused |
This group has the keyboard focus. Available for Windows Vista, Windows 7, or later Windows operating systems only. |
|
lgsSelected |
This group is selected. Available for Windows Vista, Windows 7, or later Windows operating systems only. |
|
lgsSubseted |
Only a subset of the group's items are displayed. Available for Windows Vista, Windows 7, or later Windows operating systems only. |
|
lgsSubSetLinkFocused |
The subset link of this group has keyboard focus. Available for Windows Vista, Windows 7, or later Windows operating systems only. |