Skip to main content

TileItem.OptionsTableLayout Property

Provides access to collections of rows, columns, and spans that specify a layout table where you can arrange tile elements.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public TileItemTableLayoutOptions OptionsTableLayout { get; }

Property Value

Type Description
DevExpress.XtraEditors.TileItemTableLayoutOptions

A DevExpress.XtraEditors.TileItemTableLayoutOptions object that specifies options that affect the table layout of tile elements.

Remarks

The OptionsTableLayout property provides access to collections that specify a layout table where you can arrange tile elements:

  • Columns—the collection of column definitions;
  • Rows—the collection of row definitions;
  • Spans—the collection of span definitions that allow you to merge several neighboring table cells into one cell.

Within each column or row definition, you can specify its length measured in unit stars or pixels.

Use the TileItemElement.ColumnIndex and TileItemElement.RowIndex properties to specify the cell in the table where the element should be placed.

See Also