Share via


WrapGrid.ItemHeight Property

Definition

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

public double ItemHeight { get; set; }
<WrapGrid ItemHeight="double" />

Property Value

Double

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

Remarks

If ItemHeight is NaN, then the WrapGrid 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.

Applies to

See also