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

TileView.GetCheckedRows() Method

Returns the array of row handles for data rows whose related tiles are currently checked.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public virtual int[] GetCheckedRows()

Returns

Type Description
Int32[]

An Int32 array that stores row handles for data rows whose related tiles are currently checked.

Remarks

If your grid data contains a column with boolean values, you can assign it to the CheckedColumn property accessed through the TileView.ColumnSet section. In this case, all tiles that represent data rows with the true value for this checked column will be displayed as checked (see the figure below).

TileView - Checked Column

End-users will be able to check/uncheck tiles by right-clicking them. The GetCheckedRows method allows you to get all rows whose tiles are currently checked.

See Also