|
|
Class: CSS_BackgroundRepeat (in HTML)
Object
|
+--HTML::CSS_AbstractStyleObject
|
+--HTML::CSS_AbstractStyleProperty
|
+--HTML::CSS_BackgroundRepeat
- Package:
- stx:goodies/webServer/htmlTree
- Category:
- Net-Documents-StyleSheet-Color and Background
- Version:
- rev:
1.9
date: 2008/09/03 09:55:13
- user: cg
- file: HTML__CSS_BackgroundRepeat.st directory: goodies/webServer/htmlTree
- module: stx stc-classLibrary: htmlTree
instance creation
-
newNoRepeat
-
Return a background repeat set to no repeat.
-
newRepeat
-
Return a background repeat set to repeat.
-
newRepeatX
-
Return a background repeat set to repeat-x.
-
newRepeatY
-
Return a background repeat set to repeat-y.
required protocol
-
keyName
-
Return a key name for background-repeat.
interface-accessing
-
beNoRepeat
-
Set the background to not repeat.
-
beRepeat
-
Set the background to repeat horizontally and vertically.
-
beRepeatX
-
Set the background to repeat horizontally.
-
beRepeatY
-
Set the background to repeat vertically.
required-visiting
-
acceptHTMLVisitor: aVisitor
-
visitor pattern: dispatch me to the visitor
|repeat|
repeat := BackgroundRepeat new.
repeat printHtmlString.
|
|repeat|
repeat := BackgroundRepeat newRepeat.
repeat printHtmlString.
|
|repeat|
repeat := BackgroundRepeat newNoRepeat.
repeat printHtmlString.
|
|repeat|
repeat := BackgroundRepeat newRepeatX.
repeat printHtmlString.
|
|repeat|
repeat := BackgroundRepeat newRepeatY.
repeat printHtmlString.
|
|