|
Formats and sends the stylesheet or styelsheet_item to the output file or stream.
stylesheet_formatter& stylesheet_formatter::operator << (1st Variety
const stylesheet& ss
);
stylesheet_formatter& stylesheet_formatter::operator << (2nd Variety
const stylesheet_item& si
);
The stylesheet object to format and send to the output file or stream.
The stylesheet_item object to format and send to the output file or stream.
Returns a reference to the stylesheet_formatter object. Thus, this operation can be chained for multiple insertions.
This operation allows an alternate way to send and format stylesheet and stylesheet content. The other way to perform the same task is to use stylesheet::write() or stylesheet_item::write(). This operation is sometimes easier to use if you need to chain output calls, as shown in the example above.
Linear