Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.36 KB

itemswrapgrid_itemheight.md

File metadata and controls

44 lines (32 loc) · 1.36 KB
-api-id -api-type
P:Microsoft.UI.Xaml.Controls.ItemsWrapGrid.ItemHeight
winrt property

Microsoft.UI.Xaml.Controls.ItemsWrapGrid.ItemHeight

-description

Gets or sets the height of the layout area for each item that is contained in an ItemsWrapGrid.

-xaml-syntax

<ItemsWrapGrid ItemHeight="double" />

-property-value

The height of the layout area for each item that is contained in an ItemsWrapGrid. The default is NaN. See Remarks below.

-remarks

"Auto" is not supported in XAML markup for this property.

If ItemHeight is NaN, then the ItemsWrapGrid uses the height of the first cell.

Note

In C#, you can obtain NaN from Double.NaN.

In C++, you can obtain NaN by using the NAN macro or std::numeric_limits<double>::quiet_NaN().

Do not use the == operator to test for NaN.

In C#, use Double.IsNaN() to test for NaN.

In C++, use isnan() to test for NaN.

-examples

-see-also

ItemWidth