|
|
Class: CSS_BackgroundAttachment (in HTML)
Object
|
+--HTML::CSS_AbstractStyleObject
|
+--HTML::CSS_AbstractStyleProperty
|
+--HTML::CSS_BackgroundAttachment
- Package:
- stx:goodies/webServer/htmlTree
- Category:
- Net-Documents-StyleSheet-Color and Background
- Version:
- rev:
1.9
date: 2008/09/03 09:55:06
- user: cg
- file: HTML__CSS_BackgroundAttachment.st directory: goodies/webServer/htmlTree
- module: stx stc-classLibrary: htmlTree
instance creation
-
newFixed
-
Return a background attachment set to fixed.
-
newScroll
-
Return a background attachment set to scroll.
required protocol
-
keyName
-
Return a key name for background-attachment.
interface-accessing
-
beScroll
-
Set the background attachment to scroll.
required-visiting
-
acceptHTMLVisitor: aVisitor
-
visitor pattern: dispatch me to the visitor
|attachment|
attachment := BackgroundAttachment newFixed.
attachment printHtmlString.
|
|attachment|
attachment := BackgroundAttachment newScroll.
attachment printHtmlString.
|
|