CHtmlStream::operator <<

CHtmlStream& operator<<( LPCTSTR psz );

CHtmlStream& operator<<( short int w );

CHtmlStream& operator<<( long int dw );

CHtmlStream& operator<<( const CHtmlStream& stream );

CHtmlStream& operator<<( double d );

CHtmlStream& operator<<( float f );

CHtmlStream& operator<<( const CByteArray& array );

CHtmlStream& operator<<( const CLongBinary& blob );

Remarks

The CHtmlStream insertion (<<) operator writes the specified string or integer to the HTML stream. The string version of the operator writes the string without modification. The integer override versions of the operator format the value as decimal text before writing it.

You can use the CHtmlStream& override of this function to append the content of one HTML stream to another.

CHtmlStream OverviewClass MembersHierarchy Chart

See Also   CHtmlStream::Write