TableView.HasUnevenRows Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether the rows that are contained in this TableView can have uneven rows.
public:
property bool HasUnevenRows { bool get(); void set(bool value); };
public bool HasUnevenRows { get; set; }
member this.HasUnevenRows : bool with get, set
Public Property HasUnevenRows As Boolean
Property Value
Remarks
When the HasUnevenRows property is true
, application developers can set the Height properties to control the height of Cell items in the table. When the HasUnevenRows property is true
, the RowHeight property is ignored. When the HasUnevenRows property is false
, app developers can set the RowHeight property to set the height of all Cells, and their individual Height properties are ignored.
Note: developers must specify row heights on the iOS platform, even when HasUnevenRows is true
.