Function CSPTemplate::Render()
Description:
Outputs all the text contained by this container along with the rendered output of the slots or containers contained by this object.
 |
Prototype:
void Render();
Arguments:
No arguments (void).
Return value:
No return value (void).
Remarks:
You have to first call Render or Echo() on all the contained objects before you call Render() on this object.
Examples:
Template( "tag1" )( "tag11" ).Echo( "George" ); Template( "tag1" )( "tag12" ).Echo( "John" ); Template( "tag1" ).Render(); Template( "tag2" ).Echo( "Names" ); Template.Render();
See also:
member functions Echo(), Clear(), KeepLastOutput()
|
|