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

TileViewItemElement.Column Property

Gets or sets a grid column to which this TileViewItemElement is bound.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

[DefaultValue(null)]
[DXCategory("Data")]
public GridColumn Column { get; set; }

Property Value

Type Default Description
GridColumn *null*

A GridColumn to which this TileViewItemElement is bound.

Remarks

To display a grid column’s data within the TileView, you need to add a TileViewItemElement object to the TileView.TileTemplate collection and bind this element to the desired GridColumn by using the Column property. If the column’s OptionsColumn.ShowCaption property equals false (default value), the related element will display only this column’s data. Otherwise, the column caption, separated from the column data with a colon character, will also be shown. Refer to the Tile View topic for details.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Column property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also