DrawingAttributes.RemovePropertyData(Guid) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes the custom property associated with the specified Guid.
public:
void RemovePropertyData(Guid propertyDataId);
public void RemovePropertyData (Guid propertyDataId);
member this.RemovePropertyData : Guid -> unit
Public Sub RemovePropertyData (propertyDataId As Guid)
Parameters
Exceptions
propertyDataId
is not associated with a custom property of the DrawingAttributes object.
Examples
The following example demonstrates how to remove a custom property from a DrawingAttributes object.
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
Applies to
See also
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.