|
htmlBlink
Blinking text class | [Previous] [Main] [Next] |
| htmlBlink encapsulates the <BLINK></BLINK> tags. It is used to mark regions of text for blinking display.
| |
|
| |
| #include <dcmicro/htmlpp/styles.h>
| |
|
| |
| |
|
| |
| Text Formatting Classes in the User's Guide
| |
|
| |
| None.
| |
|
| |
| htmlBlink()
| |
| Constructs an empty object.
| |
|
| |
| htmlBlink( const htmlObject& element )
| |
| Constructs an object, inserting element into it.
| |
|
| |
| htmlBlink( const String& text )
| |
| Constructs an object, inserting the string text into it.
| |
|
| |
| virtual ~htmlBlink()
| |
| 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 text is " << htmlBlink( "blinking." )
| |
| << htmlBreak() ;
| |
|
| |
| server << page ;
| |
| return 0 ;
| |
| }
| |
|
| |
| Content-Type: text/html
| |
| <HTML>
| |
| <HEAD>
| |
| <TITLE>html++ example application</TITLE>
| |
| </HEAD>
| |
| <BODY>This text is <BLINK>blinking.</BLINK><BR>
| |
| </BODY>
| |
| </HTML>
| |
|
| |
|
| |
| |
