TdxTileControlGroup.Items Property
Declaration
property Items[Index: Integer]: TdxTileControlItem read;
Property Value
Type |
---|
TdxTileControlItem |
Remarks
Use this property to access a specific tile item by passing its index within the group as the Index parameter. Indexes of tile items reflect their positions within the group. Thus, calling the MoveItem procedure for a tile item changes its index that you can identify by calling the IndexOfItem function.
The Items property’s maximum valid index is the ItemCount property value minus one.
The TdxTileControlGroup class provides an API for tile item management operations, including:
Appending existing tiles to the group (Add);
Deleting tiles (DeleteItem and DeleteItems);
Moving tiles within the group (MoveItem);
Removing tiles from the group (RemoveItem and RemoveItems).
See Also