Skip to main content

TileGroupCollection.Remove(TileGroup) Method

Removes the specific TileGroup from the current TileGroupCollection.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public void Remove(
    TileGroup group
)

Parameters

Name Type Description
group TileGroup

A TileGroup to be removed.

Remarks

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

See Also