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

TdxTileControlGroup.DeleteItem(TdxTileControlItem) Method

Deletes a specific tile or tile bar item within the group.

#Declaration

Delphi
procedure DeleteItem(AItem: TdxTileControlItem);

#Parameters

Name Type
AItem TdxTileControlItem

#Remarks

Call this procedure to destroy a tile item passed as the AItem parameter. To clear the group by destroying all of its items, call the DeleteItems procedure instead.

Call the RemoveItem or RemoveItems procedure to unlink tile items from the group without destroying them. Removed items are hidden yet still accessible via the control’s Items collection.

Note

Calling the DeleteItem procedure has no effect if the specified tile item is not within the group.

See Also