TdxListGroupOption Enum
Enumerates a list group‘s appearance and behavior options.
#Declaration
TdxListGroupOption = (
Collapsible,
Focusable,
Hidden,
NoHeader,
SelectItems
);
#Members
Name | Description |
---|---|
Collapsible
|
The group shows its expand button. |
Focusable
|
The group can receive focus. |
Hidden
|
The group is hidden. |
No
|
The group does not display its header. |
Select
|
The group selects its items when it receives focus. |
#Remarks
The TdxListGroupOptions type references the TdxListGroupOption type.
Note
Tdx
is a scoped enumeration type. Use the type name together with a scope resolution token (.
in Delphi or ::
in C++Builder) followed by an enumeration value to refer to this value. For example, use Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Hidden
value in code.