FrameworkContentElement.RemoveLogicalChild(Object) Method

Definition

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