DrawingAttributes.RemovePropertyData(Guid) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
移除与指定 Guid 关联的自定义属性。
public:
void RemovePropertyData(Guid propertyDataId);
public void RemovePropertyData (Guid propertyDataId);
member this.RemovePropertyData : Guid -> unit
Public Sub RemovePropertyData (propertyDataId As Guid)
参数
例外
propertyDataId
不与 DrawingAttributes 对象的自定义属性关联。
示例
以下示例演示如何从 DrawingAttributes 对象中删除自定义属性。
Guid customProperty = new Guid("12345678-9012-3456-7890-123456789012");
void RemovePropertyDataId(DrawingAttributes attributes)
{
if (attributes.ContainsPropertyData(customProperty))
{
attributes.RemovePropertyData(customProperty);
}
}
Private customProperty As New Guid("12345678-9012-3456-7890-123456789012")
Sub RemovePropertyDataId(ByVal attributes As Ink.DrawingAttributes)
If attributes.ContainsPropertyData(customProperty) Then
attributes.RemovePropertyData(customProperty)
End If
End Sub