AttachablePropertyServices.RemoveProperty 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 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.
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.