DrawingAttributes.MaxWidth Field

Definition

Specifies the largest value allowed for the Width property.

C#
public static readonly double MaxWidth;

Field Value

Examples

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

C#
if (DAWidth < DrawingAttributes.MinWidth)
{
    DAWidth = DrawingAttributes.MinWidth;
}
else if (DAWidth > DrawingAttributes.MaxWidth)
{
    DAWidth = DrawingAttributes.MaxWidth;
}

inkCanvas1.DefaultDrawingAttributes.Width = DAWidth;

Remarks

Use the MaxWidth field to check whether a value is within the limits allowed for the Width 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