Skip to main content
A newer version of this page is available. .

TcxGridIndicatorViewInfo.Items Property

Indexed property referencing the ViewInfos of all row footer and header indicators.

Declaration

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. There are several conditions affecting the contents 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