Stroke.GetPoints 方法

返回构成 Stroke 对象的所有 Point 结构。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public Function GetPoints As Point()
用法
Dim instance As Stroke
Dim returnValue As Point()

returnValue = instance.GetPoints()
public Point[] GetPoints()
public:
array<Point>^ GetPoints()
public Point[] GetPoints()
public function GetPoints() : Point[]

返回值

类型:array<System.Drawing.Point[]
返回构成 Stroke 对象的 Point 结构的数组。

示例

在此示例中,使用 InkOverlay 的所有选定 Stroke 对象创建一个新的 Stroke 对象。然后,将新建的 Stroke 对象沿 XY 方向移动 200 HIMETRIC 单位。

For Each S As Stroke In mInkOverlay.Selection
    Dim sPts() As Point = S.GetPoints()
    Dim newStroke As Stroke = S.Ink.CreateStroke(sPts)
    newStroke.Move(200, 200)
Next
foreach (Stroke S in mInkOverlay.Selection)
{
    Point[] sPts = S.GetPoints();
    Stroke newStroke = S.Ink.CreateStroke(sPts);
    newStroke.Move(200, 200);
}

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

Stroke 类

Stroke 成员

GetPoints 重载

Microsoft.Ink 命名空间

Stroke.GetPoint