See Also: RowDefinition Members
The Xamarin.Forms.RowDefinition class has the following XAML property:
| Property | Value |
|---|---|
| Height | "*" or "Auto" to indicate the corresponding Xamarin.Forms.GridUnitType enumeration values, or a number to indicate an absolute height. |
App developers can specify Xamarin.Forms.GridUnitType values for the ColumnDefinition.Height property in XAML. This is typically done inside tags for the Grid.RowDefinitions collection property. The following example demonstrates setting three row heights to each of the three valid Xamarin.Forms.GridUnitType values:
XAML Example
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="100" />
</Grid.RowDefinitions>