DrawingAttributes.MinHeight Field

Definition

Specifies the smallest value allowed for the Height property.

C#
public static readonly double MinHeight;

Field Value

Examples

The following example ensures the Height property of the DrawingAttributes is set to a legal value. This example assumes that there is an InkCanvas called inkCanvas1.

C#
if (DAHeight < DrawingAttributes.MinHeight)
{
    DAHeight = DrawingAttributes.MinHeight;
}
else if (DAHeight > DrawingAttributes.MaxHeight)
{
    DAHeight = DrawingAttributes.MaxHeight;
}

inkCanvas1.DefaultDrawingAttributes.Height = DAHeight;

Remarks

Use the MinHeight field to check whether a value is within the limits allowed for the Height property. Do this when the value comes from an unknown source, such as unconstrained user input.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10