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

TcxGridIndicatorViewInfo.Items Property

Provides indexed access to ViewInfo objects of all row footer and header indicators.

#Declaration

Delphi
property Items[Index: Integer]: TcxCustomGridIndicatorItemViewInfo read;

#Property Value

Type
TcxCustomGridIndicatorItemViewInfo

#Remarks

This property enables you to access the ViewInfos of all indicators including footer and header indicators. The following conditions affect content of the Items collection:

  • If a grid View has a header (the View’s OptionsView.Header property is set to True), the first item (with the zero index) refers to a header indicator item. The rest of the items refer to row indicator items.

  • If a grid View has a footer (the View’s OptionsView.Footer property is set to True) and has no header (the View’s OptionsView.Header property is set to False), the first item (with the zero index) refers to a footer indicator item. The rest of the items refer to row indicator items.

  • If a grid View has both a header and a footer (the View’s OptionsView.Footer and OptionsView.Header properties are set to True), the first item (with the zero index) refers to a header indicator item and the second – to a footer indicator item. The rest of the items refer to row indicator items.

  • If a grid View has neither header nor footer (the View’s OptionsView.Footer and OptionsView.Header properties are set to False), all items refer to row indicator items.

See Also