DrawingAttributes.RemovePropertyData(Guid) Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Удаляет пользовательское свойство, связанное с указанным 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