Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.36 KB

itemswrapgrid_itemwidth.md

File metadata and controls

45 lines (32 loc) · 1.36 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.ItemsWrapGrid.ItemWidth
winrt property

Windows.UI.Xaml.Controls.ItemsWrapGrid.ItemWidth

-description

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

-xaml-syntax

<ItemsWrapGrid ItemWidth="double" />

-property-value

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

-remarks

If ItemWidth is NaN, then the ItemsWrapGrid uses the width 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

ItemHeight