htmlSuperscript
Superscripted text class
[Previous] [Main] [Next]


Description
htmlSuperscript encapsulates the <SUP></SUP> tags. It is used to mark regions of text that should be rendered as superscript text using a smaller font compared with normal text.  
 
Declaration
#include <dcmicro/htmlpp/styles.h>  
 
Hierarchy
htmlsuperscript.gif  
 
See Also
Text Formatting Classes in the User's Guide  
 
Related Constants/Definitions
None.  
 
Constructors
htmlSuperscript()  
Constructs an empty object.  
 
htmlSuperscript( const htmlObject& element )  
Constructs an object, inserting element into it.  
 
htmlSuperscript( const String& text )  
Constructs an object, inserting the string text into it.  
 
Destructor
virtual ~htmlSuperscript()  
Destroys the object.  
 
Example Use
 
#include <stdio.h>  
#include <stdlib.h>  
#include <dcmicro/htmlpp/htmlpp.h>  
 
int main( void )  
{  
   htmlCgi   server ;  
   htmlPage  page( "html++ example application" ) ;  
 
   page << "This is "   
        << htmlSuperscript( "superscripted" )  
        << " text."   
        << htmlBreak() ;  
 
   server << page ;  
   return 0 ;  
}  
 
Program Output
 
Content-Type: text/html  
<HTML>  
<HEAD>  
<TITLE>html++ example application</TITLE>  
</HEAD>  
<BODY>This is <SUP>superscripted</SUP> text.<BR>  
</BODY>  
</HTML>  
 
 
superscript.gif  



©1998 DC Micro Development. All rights reserved.
No portion of this document may be c opied or reproduced without expressed written consent.
html++ is a trademark of DC Micro Development.