AttachablePropertyServices.RemoveProperty Method

Definition

Removes the entry for the specified attachable property from the specified store.

public:
 static bool RemoveProperty(System::Object ^ instance, System::Xaml::AttachableMemberIdentifier ^ name);
public static bool RemoveProperty (object instance, System.Xaml.AttachableMemberIdentifier name);
static member RemoveProperty : obj * System.Xaml.AttachableMemberIdentifier -> bool
Public Shared Function RemoveProperty (instance As Object, name As AttachableMemberIdentifier) As Boolean

Parameters

instance
Object

A specific attachable property store that implements IAttachedPropertyStore; or any non-null object to access a static default attachable property store.

name
AttachableMemberIdentifier

The identifier for the attachable property entry to remove from the store.

Returns

true if an attachable property entry for name was found in the store and removed from it; otherwise, false.

Remarks

Stores are per instance; therefore, in a store, the name value should be unambiguous.

Applies to