Share via


IXRRowDefinition::SetMinHeight (Compact 2013)

3/28/2014

This method sets a value that represents the minimum-allowed height of this row definition.

Syntax

virtual HRESULT STDMETHODCALLTYPE SetMinHeight(
    float MinHeight
) = 0;

Parameters

  • MinHeight
    [in] A float value that indicates the minimum-allowed height of this row definition.

Return Value

Returns an HRESULT that indicates success or failure.

Remarks

When you use multiple height settings in a row definition, the MinHeight value takes precedence over the MaxHeight value, which in turn takes precedence over the Height value. You can set these values by using SetMinHeight, IXRRowDefinition::SetMaxHeight, and IXRRowDefinition::SetHeight.

When you add or remove rows or columns for a grid object, the ActualHeight value for all IXRRowDefinition child objects on that grid, and also the ActualWidth of all IXRColumnDefinition child objects on that grid, becomes zero until the IXRGrid inherited method IXRUIElement::Measure is called to update the desired size of the object.

.NET Framework Equivalent

System.Windows.Controls.RowDefinition.MinHeight

Requirements

Header

XamlRuntime.h

sysgen

SYSGEN_XAML_RUNTIME

See Also

Reference

IXRRowDefinition
IXRRowDefinition::GetMinHeight