|
|
| htmlGroup is the parent class for any html++ object that can contain other objects. It is derived from htmlObject, and is intended to manage groups of strings and htmlObject-derived classes. Many html++ classes inhereit from htmlGroup, including htmlTable and htmlParagraph.
|
|
|
| htmlGroup is used internally by html++ and, though not intended for direct use, defines member methods common to most html++ classes, including default assignment behavior and deep removal (RemoveAllElements).
|
|
|
| The htmlContainer class is derived from htmlGroup, and can serve as a generic container for other html++ objects when constructing documents or document fragments in memory, without adding extra HTML tags to the output.
|
|
|
| |