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

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.v24.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