Skip to main content

TileGroupCollection.Insert(Int32, TileGroup) Method

Adds a new TileGroup into a TileGroupCollection and places it at the specific position.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public void Insert(
    int index,
    TileGroup group
)

Parameters

Name Type Description
index Int32

An Int32 value indicating the position to which the inserted group will be placed.

group TileGroup

A TileGroup object to be inserted.

Remarks

A TileControl‘s group collection can be obtained via the TileControl.Groups property. The Insert method adds a new group into a TileGroupCollection collection and places it at the specific position specified via the index parameter. Use the TileGroupCollection.Add method instead to simply add a group at the end of the collection. The TileGroupCollection.Remove method deletes a specific tile group out of a TileGroupCollection.

See Also