OWLNext    7.0
Borland's Object Windows Library for the modern age
Loading...
Searching...
No Matches
Child-window Lists

When you construct a child-window object, you specify its parent as a parameter to its constructor.

A child-window object keeps track of its parent through the TWindow::Parent data member. A parent keeps track of its child-window objects in a private data member called ChildList. Each parent maintains its list of child windows automatically. You can access an object's child windows using the window iterator member functions TWindow::FirstThat() and TWindow::ForEach().

See Also