DrawingAttributes.Height 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置用于绘制 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 属性。 该示例假定应用程序具有一个名为 InkCanvas 的 inkCanvas1
和两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 。
绘制 时 Stroke 应用于触笔的压力量。
StylusTipTransform 属性的值。
如果将 属性设置为 Height 0 个与设备无关的像素 (DIP) ,它将更改为 2 DIP。
XAML 文本用法
此属性通常不在 XAML 中使用。