|
|
Class: CSS_FontSize (in HTML)
Object
|
+--HTML::CSS_AbstractStyleObject
|
+--HTML::CSS_AbstractStyleProperty
|
+--HTML::CSS_FontSize
- Package:
- stx:goodies/webServer/htmlTree
- Category:
- Net-Documents-StyleSheet-Font
- Version:
- rev:
1.7
date: 2007/11/05 21:10:07
- user: cg
- file: HTML__CSS_FontSize.st directory: goodies/webServer/htmlTree
- module: stx stc-classLibrary: htmlTree
instance creation
-
newLarge
-
Create a new font-size set to large.
-
newSmall
-
Create a new font-size set to medium.
-
newXLarge
-
Create a new font-size set to x-large.
-
newXSmall
-
Create a new font-size set to x-small.
-
newXXSmall
-
Create a new font-size set to xx-small.
required protocol
-
keyName
-
Return a key name for font-size.
interface-accessing
-
beLarge
-
Set the font-size to large.
-
beSmall
-
Set the font-size to small.
-
beXLarge
-
Set the font-size to x-large.
-
beXSmall
-
Set the font-size to x-small.
-
beXXSmall
-
Set the font-size to xx-small.
required-visiting
-
acceptHTMLVisitor: aVisitor
-
visitor pattern: dispatch me to the visitor
CSS_FontSize newXLarge printHtmlString.
|
CSS_FontSize newLarge printHtmlString.
|
CSS_FontSize newMedium printHtmlString.
|
CSS_FontSize newSmall printHtmlString.
|
CSS_FontSize newXSmall printHtmlString.
|
CSS_FontSize newXXSmall printHtmlString.
|
|