|
|
Class: CSS_FontFamily (in HTML)
Object
|
+--HTML::CSS_AbstractStyleObject
|
+--HTML::CSS_AbstractStyleProperty
|
+--HTML::CSS_FontFamily
- Package:
- stx:goodies/webServer/htmlTree
- Category:
- Net-Documents-StyleSheet-Font
- Version:
- rev:
1.7
date: 2007/11/05 21:10:05
- user: cg
- file: HTML__CSS_FontFamily.st directory: goodies/webServer/htmlTree
- module: stx stc-classLibrary: htmlTree
instance creation
-
newCursive
-
Create a new font-family set to cursive.
-
newFantasy
-
Create a new font-family set to fantasy.
-
newMonospace
-
Create a new font-family set to monospace.
-
newSansSerif
-
Create a new font-family set to sans-serif.
-
newSerif
-
Create a new font-family set to serif.
required protocol
-
keyName
-
Return a key name for font-family.
interface-accessing
-
beCursive
-
Set the font-family to cursive.
-
beFantasy
-
Set the font-family to fantasy.
-
beMonospace
-
Set the font-family to monospace.
-
beSansSerif
-
Set the font-family to sans-serif.
-
beSerif
-
Set the font-family to serif.
required-visiting
-
acceptHTMLVisitor: aVisitor
-
visitor pattern: dispatch me to the visitor
CSS_FontFamily newCursive printHtmlString.
|
CSS_FontFamily newFantasy printHtmlString.
|
CSS_FontFamily newMonospace printHtmlString.
|
CSS_FontFamily newSansSerif printHtmlString.
|
CSS_FontFamily newSerif printHtmlString.
|
|