Skip to main content

TileItemCollection.Remove(TileItem) Method

Removes the specified TileItem from the current TileItemCollection.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public void Remove(
    TileItem item
)

Parameters

Name Type Description
item TileItem

A TileItem to be deleted.

Remarks

A TileGroup‘s items collection can be obtained via the TileGroup.Items property. The TileItemCollection.Add method adds a new tile item into a TileItemCollection collection and places it last. Instead, use the TileItemCollection.Insert method to manually specify the added item’s position. The Remove method deletes a specific tile item out of a TileItemCollection.

See Also