Concept Framework 2.2 documentation Contents | Index

WebDocument.operator<<

Name Type Access Version Deprecated
operator<< operator public version 1.0 no

Prototype:
operator<< (x)

Parameters:
x      the element to output (string, number, array, anything)

Description:
The equivalent of the echo keyword. This operator should be used to output text to the web document. If the BeginDocument function was not called before, a ConceptException will be raised.

Example:
	var doc=new WebDocument();
	doc.BeginDocument();
	doc << "Hello world !!! " << doc.endl << "Hello from Concept !";
	doc.EndDocument();

Returns:
Returns this WebDocument.

Documented by Eduard Suica, generation time: Sun Jan 27 18:15:12 2013 GMT(c)2013 Devronium Applications