Back to Devexpress

TdxListGroupOption Enum

vcl-dxlistview-024c6cfa.md

latest1.1 KB
Original Source

TdxListGroupOption Enum

Enumerates a list group‘s appearance and behavior options.

Declaration

delphi
TdxListGroupOption = (
    Collapsible,
    Focusable,
    Hidden,
    NoHeader,
    SelectItems
);

Members

NameDescription
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

dxListView Unit