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

TileItemFrameCollection.Remove(TileItemFrame) Method

Deletes a specific TileItemFrame from the current TileItemFrameCollection.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

public void Remove(
    TileItemFrame item
)

Parameters

Name Type Description
item TileItemFrame

A TileItemFrame to be deleted.

Remarks

A TileItem‘s frame collection can be obtained via the TileItem.Frames property. The Remove method deletes a specific item frame out of a TileItemFrameCollection collection. The TileItemFrameCollection.Add method adds a frame to a TileItemFrameCollection and places it last. Instead, use the TileItemFrameCollection.Insert method to manually specify the added group’s position.

To add or remove a frame from a tile’s TileItem.Frames collection at design-time, use the Frame Collection Editor. See the Tile Animation topic to learn more.

See Also