nw::lyt::Pane::InsertChild Member Function

Syntax

void InsertChild(
     Pane * pNext,
     Pane * pChild
);

void InsertChild(
     PaneList::Iterator next,
     Pane * pChild
);

List of Overloaded Member Functions

InsertChild ( Pane *, Pane * ) Inserts a child pane at the specified position.
InsertChild ( PaneList::Iterator, Pane * ) Inserts a child pane at the specified position.

InsertChild ( Pane *, Pane * ) Member Function

Adds the pane pointed to by pChild as a child of this pane. Inserts the pane to be added in the position right after the pane specified by pNext.

Do not insert oneself as a child pane. Do not insert a pane that is already a child pane of this pane.

Description of InsertChild ( PaneList::Iterator, Pane * )

Adds the pane pointed to by pChild as a child of this pane. Inserts the iterator to be added in the position right after the iterator specified by next.

Do not insert oneself as a child pane. Do not insert a pane that is already a child pane of this pane.


CONFIDENTIAL