StrokeCollection.GetPropertyDataIds メソッド

定義

StrokeCollection に関連付けられているカスタム プロパティの GUID を返します。

public:
 cli::array <Guid> ^ GetPropertyDataIds();
public Guid[] GetPropertyDataIds ();
member this.GetPropertyDataIds : unit -> Guid[]
Public Function GetPropertyDataIds () As Guid()

戻り値

Guid[]

カスタム プロパティ識別子を表す Guid 型の配列。

次の例では、 からカスタム プロパティ識別子を取得する方法を StrokeCollection示します。

private void GetPropertyIds(StrokeCollection strokes)
{
    Guid[] propertyIds = strokes.GetPropertyDataIds();
}
Private Sub GetPropertyIds(ByVal strokes As StrokeCollection)

    Dim propertyIds As Guid() = strokes.GetPropertyDataIds()

End Sub

適用対象