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

适用于