TcxGridIndicatorViewInfo.Items Property
Provides indexed access to ViewInfo objects 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. 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 toFalse), 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.