Skip to main content

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.

NoHeader

The group does not display its header.

SelectItems

The group selects its items when it receives focus.

Remarks

The TdxListGroupOptions type references the TdxListGroupOption type.

Note

TdxListGroupOption 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 TdxListGroupOption.Hidden (in Delphi) or TdxListGroupOption::Hidden (in C++Builder) to refer to the Hidden value in code.

See Also