Skip to main content

TileItemElementCollection.IndexOf(TileItemElement) Method

Gets a position of the target TileItemElement within the current TileItemElementCollection.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public int IndexOf(
    TileItemElement element
)

Parameters

Name Type Description
element TileItemElement

A TileItemElement whose index is to be obtained.

Returns

Type Description
Int32

An Int32 value that is the position of the target TileItemElement within the current TileItemElementCollection.

Remarks

A collection of TileItemElements used by the current TileItem can be accessed via its TileItem.Elements property. This method is the opposite of the TileItemElementCollection.Item method.

See Also