DrawingAttributes.Height 属性

定义

获取或设置用于绘制 Stroke 的触笔的高度。

public:
 property double Height { double get(); void set(double value); };
public double Height { get; set; }
member this.Height : double with get, set
Public Property Height As Double

属性值

表示用于绘制 Stroke 的触笔高度的值。

例外

示例

以下示例演示如何设置 Height 属性。 该示例假定应用程序具有一个名为 InkCanvasinkCanvas1和两DrawingAttributes个名为 和 highlighterDA的对象inkDA。 有关完整示例,请参阅 DrawingAttributes 类概述。

// Set up the DrawingAttributes for the pen.
inkDA = new DrawingAttributes();
inkDA.Color = Colors.SpringGreen;
inkDA.Height = 5;
inkDA.Width = 5;
inkDA.FitToCurve = false;
inkDA.StylusTipTransform = new Matrix(1, 0, 0, 5, 0, 0);

// Set up the DrawingAttributes for the highlighter.
highlighterDA = new DrawingAttributes();
highlighterDA.Color = Colors.Orchid;
highlighterDA.IsHighlighter = true;
highlighterDA.IgnorePressure = true;
highlighterDA.StylusTip = StylusTip.Rectangle;
highlighterDA.Height = 30;
highlighterDA.Width = 10;

inkCanvas1.DefaultDrawingAttributes = inkDA;
' Set up the DrawingAttributes for the pen.
inkDA = New Ink.DrawingAttributes()
With inkDA
    .Color = Colors.SpringGreen
    .Height = 5
    .Width = 5
    .FitToCurve = True
    .StylusTipTransform = New Matrix(1, 0, 0, 1, 20, 0)
End With

' Set up the DrawingAttributes for the highlighter.
highlighterDA = New Ink.DrawingAttributes()
With highlighterDA
    .Color = Colors.Orchid
    .IsHighlighter = True
    .IgnorePressure = True
    .StylusTip = StylusTip.Rectangle
    .Height = 30
    .Width = 10
End With

inkCanvas1.DefaultDrawingAttributes = inkDA

注解

以下因素会影响呈现 时的高度 Stroke 和宽度,但不影响 属性的值 Height

如果将 属性设置为 Height 0 个与设备无关的像素 (DIP) ,它将更改为 2 DIP。

XAML 文本用法

此属性通常不在 XAML 中使用。

适用于