Ink.CreateStroke 方法 (array<Point[])
命名空间: Microsoft.Ink
程序集: Microsoft.Ink(在 Microsoft.Ink.dll 中)
语法
声明
Public Function CreateStroke ( _
points As Point() _
) As Stroke
用法
Dim instance As Ink
Dim points As Point()
Dim returnValue As Stroke
returnValue = instance.CreateStroke(points)
public Stroke CreateStroke(
Point[] points
)
public:
Stroke^ CreateStroke(
array<Point>^ points
)
public Stroke CreateStroke(
Point[] points
)
public function CreateStroke(
points : Point[]
) : Stroke
参数
- points
类型:array<System.Drawing.Point[]
构成 Stroke 对象的点数组。
返回值
类型:Microsoft.Ink.Stroke
新创建的笔画。
新创建的 Stroke 对象。
备注
点数组中的任一点的最小值和最大值分别为 System.Int32.MinValue 和 System.Int32.MaxValue 字段。但是,这些点定义的墨迹空间 矩形的最大宽度或高度不能超过 System.Int32.MaxValue。因此,最小和最大 x 坐标之间或最小和最大 y 坐标之间的差不能超过 System.Int32.MaxValue。
示例
在此示例中,在 Ink 对象中创建一个 Stroke 对象。笔画 从墨迹区域的左上角直到右下角。
' get the bottom right point of the client area for ink
' Note: InkOverlay.AttachedControl property must be set
Dim bottomRight As Point = New Point(mInkOverlay.AttachedControl.ClientSize)
' convert to HIMETRIC units
Using g As Graphics = mInkOverlay.AttachedControl.CreateGraphics()
mInkOverlay.Renderer.PixelToInkSpace(g, bottomRight)
End Using
' create the stroke
Dim strokePoints As Point() = New Point(1) {New Point(0), bottomRight}
mInkOverlay.Ink.CreateStroke(strokePoints)
mInkOverlay.AttachedControl.Invalidate()
// get the bottom right point of the client area for ink
// Note: InkOverlay.AttachedControl property must be set
Point bottomRight = new Point(mInkOverlay.AttachedControl.ClientSize);
// convert to HIMETRIC units
using (Graphics g = mInkOverlay.AttachedControl.CreateGraphics())
{
mInkOverlay.Renderer.PixelToInkSpace(g, ref bottomRight);
}
// create the stroke
Point[] strokePoints = new Point[2] { new Point(0), bottomRight };
mInkOverlay.Ink.CreateStroke(strokePoints);
mInkOverlay.AttachedControl.Invalidate();
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0
另请参见
参考
TabletPropertyDescriptionCollection.InkToDeviceScaleX