FrameworkContentElement.RemoveLogicalChild(Object) 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 specified element from the logical tree for this element.
protected public:
void RemoveLogicalChild(System::Object ^ child);
protected internal void RemoveLogicalChild (object child);
member this.RemoveLogicalChild : obj -> unit
Protected Friend Sub RemoveLogicalChild (child As Object)
Parameters
- child
- Object
The element to remove.
Remarks
This API is mainly relevant for class deriving scenarios, when adding support for child collections.
Most FrameworkContentElement derived classes expose dedicated collections that are responsible for containment (for example, Inlines on the Span class; Blocks on the Section class). Deriving from such classes typically can avoid any need to manipulate the logical tree directly.
Applies to
See also
.NET