DrawingAttributes.MaxHeight 字段
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定 Height 属性所允许的最大值。
public: static initonly double MaxHeight;
public static readonly double MaxHeight;
staticval mutable MaxHeight : double
Public Shared ReadOnly MaxHeight As Double
字段值
示例
以下示例确保 的 Height 属性 DrawingAttributes 设置为法定值。 此示例假定有一个名为 InkCanvas 的 inkCanvas1
。
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的限制范围内。 当值来自未知源(例如不受约束的用户输入)时执行此操作。