Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TileViewItem.RowHandle Property

Returns the row handle for this TileViewItem.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#Declaration

[DefaultValue(-2147483648)]
[DXCategory("Data")]
public int RowHandle { get; }

#Property Value

Type Default Description
Int32 -2147483648

An Int32 value that is the integer index associated with a data row, displayed within this TileViewItem. Row handles are not data source indexes, see the Accessing Rows in Code. Row Handles section of the “Rows” article for more information.

#Remarks

The RowHandle property returns a unique identifier of the current tile. For instance, you can determine whether a particular tile is visible in the view by passing its handle to the TileView.IsTileVisible method.

See Also