|
htmlSubscript
Subscripted text class | [Previous] [Main] [Next] |
| htmlSubscript encapsulates the <SUB></SUB> tags. It is used to mark regions of text that should be rendered as subscript text using a smaller font compared with normal text.
| |
|
| |
| #include <dcmicro/htmlpp/styles.h>
| |
|
| |
| |
|
| |
| Text Formatting Classes in the User's Guide
| |
|
| |
| None.
| |
|
| |
| htmlSubscript()
| |
| Constructs an empty object.
| |
|
| |
| htmlSubscript( const htmlObject& element )
| |
| Constructs an object, inserting element into it.
| |
|
| |
| htmlSubscript( const String& text )
| |
| Constructs an object, inserting the string text into it.
| |
|
| |
| virtual ~htmlSubscript()
| |
| Destroys the object.
| |
|
| |
|
| |
| #include <stdio.h>
| |
| #include <stdlib.h>
| |
| #include <dcmicro/htmlpp/htmlpp.h>
| |
|
| |
| int main( void )
| |
| {
| |
| htmlCgi server ;
| |
| htmlPage page( "html++ example application" ) ;
| |
|
| |
| page << "This is " << htmlSubscript( "subscripted" )
| |
| << " text." << htmlBreak() ;
| |
|
| |
| server << page ;
| |
| return 0 ;
| |
| }
| |
|
| |
|
| |
| Content-Type: text/html
| |
| <HTML>
| |
| <HEAD>
| |
| <TITLE>html++ example application</TITLE>
| |
| </HEAD>
| |
| <BODY>This is <SUB>subscripted</SUB> text.<BR>
| |
| </BODY>
| |
| </HTML>
| |
|
| |
|
| |
| |
