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

適用於