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