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

TileViewColumns.CheckedColumn Property

Gets or sets the column with Boolean values that specify the checked state for tiles.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

[DefaultValue(null)]
public GridColumn CheckedColumn { get; set; }

#Property Value

Type Default Description
GridColumn null

A GridColumn object representing a column with Boolean values that specify the checked state for tiles.

#Remarks

Boolean values of a grid column assigned to the CheckedColumn property affect the tiles’ checked state. Checked tiles are displayed with a check mark at their top right corner, as the figure below illustrates.

TileView - Checked Column

End-users can manually check or uncheck tiles by right-clicking them at runtime, which fires the TileView.ItemRightClick event.

See Also