Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 3.5 KB

rowdefinition_height.md

File metadata and controls

45 lines (32 loc) · 3.5 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.RowDefinition.Height
winrt property

Windows.UI.Xaml.Controls.RowDefinition.Height

-description

Gets the calculated height of a RowDefinition element, or sets the GridLength value of a row that is defined by the RowDefinition.

-xaml-syntax

<RowDefinition Height="doubleValue"/>
- or -
<RowDefinition Height="starSizing"/>
-or-
<RowDefinition Height="Auto"/>

-xaml-values

doubleValue
doubleValueThe row's height, expressed as a floating-point value for a pixel count. Typically this is specified as an integer, although interpolation of floating-point values is supported by grid layout.
starSizing
starSizingA convention by which you can size rows or columns to take the remaining available space in a Grid. A star sizing always includes the asterisk character (\*), and optionally precedes the asterisk with an integer value that specifies a weighted factor versus other possible star sizings (for example, 3\*). For more information about star sizing, see Grid.
Auto
AutoThe row's height, described by the literal Auto. For more information about Auto sizing, see Grid.
## -property-value The [GridLength](../windows.ui.xaml/gridlength.md) that represents the height of the row. The default value is a [GridLength](../windows.ui.xaml/gridlength.md) representing a "1\*" sizing.

-remarks

The default value of Width is a GridLength representing a "1*" sizing. This structure value has a Value data value of 1.0, and a GridUnitType data value of Star. With this default, each new RowDefinition you define for a Grid will have "1*" sizing, and each will be allotted an equal number of pixels for height of its content in layout handling. It's not uncommon to define RowDefinition as an object element in XAML without any attributes set and to just use this default behavior. The same is true for ColumnDefinition.

The value you set for Height can be constrained if you also set a value for MinHeight or MaxHeight. Each of these properties can take only pixel measurements, not Star sizing. If a RowDefinition uses Star or Auto sizing but also has MinHeight or MaxHeight constraints, the MinHeight or MaxHeight must be honored by the Grid layout behavior, even if that means giving or taking layout space from other Star sizing rows defined in the Grid that don't have constraints.

It's more common to use Star sizing than absolute pixel values for a Grid definition in a UWP app using C++, C#, or Visual Basic. Star sizing supports the dynamic layout concept, which helps your app look great on screens with different sizes, pixel densities and orientations. For more info, see Define layouts with XAML.

-examples

-see-also

Grid, Grid.RowDefinitions, Grid.Row, Define layouts with XAML