ItemsWrapGrid.ItemHeight Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the height of the layout area for each item that is contained in an ItemsWrapGrid.
public:
property double ItemHeight { double get(); void set(double value); };
double ItemHeight();
void ItemHeight(double value);
public double ItemHeight { get; set; }
var double = itemsWrapGrid.itemHeight;
itemsWrapGrid.itemHeight = double;
Public Property ItemHeight As Double
<ItemsWrapGrid ItemHeight="double" />
Property Value
double
The height of the layout area for each item that is contained in an ItemsWrapGrid. The default is NaN. See Remarks below.
Remarks
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.