DrawingAttributes.MaxHeight 字段

定义

指定 Height 属性所允许的最大值。

public: static initonly double MaxHeight;
public static readonly double MaxHeight;
 staticval mutable MaxHeight : double
Public Shared ReadOnly MaxHeight As Double 

字段值

示例

以下示例确保 的 Height 属性 DrawingAttributes 设置为法定值。 此示例假定有一个名为 InkCanvasinkCanvas1

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

inkCanvas1.DefaultDrawingAttributes.Height = DAHeight;
If DAHeight < DrawingAttributes.MinHeight Then

    DAHeight = DrawingAttributes.MinHeight

ElseIf DAHeight > DrawingAttributes.MaxHeight Then

    DAHeight = DrawingAttributes.MaxHeight

End If

inkCanvas1.DefaultDrawingAttributes.Height = DAHeight

注解

MaxHeight使用 字段检查值是否在属性允许Height的限制范围内。 当值来自未知源(例如不受约束的用户输入)时执行此操作。

适用于