次の方法で共有


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 オブジェクトは、次に X 方向および Y 方向に 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