RowDefinition.Height Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the calculated height of a RowDefinition element, or sets the GridLength value of a row that is defined by the RowDefinition.
Assembly: System.Windows (in System.Windows.dll)
XMLNS for XAML: Not mapped to an xmlns.
<RowDefinition Height="doubleValue"/> - or - <RowDefinition Height="starSizing"/> -or- <RowDefinition Height="Auto"/>
XAML Values
Property Value
Type: System.Windows.GridLengthThe GridLength that represents the height of the row. The default value is 1.0.
Dependency property identifier field: HeightProperty
The default GridUnitType is Star.
When you use these values in the same code example, the MinHeight value takes precedence over the MaxHeight value, which in turn takes precedence over the Height value.
When you add or remove rows or columns, the ActualWidth for all ColumnDefinition elements and the ActualHeight of all RowDefinition elements become zero until Measure is called.