TileView.ColumnSet Property
Provides access to the set of properties that take GridColumns as values, and affect tile behavior and visual states.
Namespace: DevExpress.XtraGrid.Views.Tile
Assembly: DevExpress.XtraGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
[XtraSerializableProperty(XtraSerializationVisibility.Content, XtraSerializationFlags.DefaultValue)]
[XtraSerializablePropertyId(282)]
[DXCategory("Options")]
public TileViewColumns ColumnSet { get; }
Property Value
Type | Description |
---|---|
TileViewColumns | A TileViewColumn collection that stores properties that take GridColumns as values, and affect tile behavior and visual states. |
Remarks
Using the ColumnSet property, you can access four properties:
- TileViewColumns.BackgroundImageColumn - allows you to assign a grid column that contains images, used as background images for TileView tiles;
- TileViewColumns.CheckedColumn - gets or sets a column that stores boolean values, depending on which corresponding tiles can be drawn as checked. Assigning a grid column to this property automatically enables the capability to check/uncheck tiles at runtime with a right mouse click;
- TileViewColumns.EnabledColumn - a boolean column that displays corresponding tiles as disabled;
- TileViewColumns.GroupColumn - gets or sets a grid column, based on the values of which all TileView tiles are grouped into separate tile groups.
See the Tile View topic to learn more.
Enable the StoreColumnSet option to serialize the ColumnSet property value when you save the layout to a file, stream, or registry. See Save and Restore Grid Layout for more information.
See Also