Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxListGroupOption Enum

Enumerates a list group‘s appearance and behavior options.

#Declaration

Delphi
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