Class HtmlTd
HtmlTd -> HtmlContainer
This container widget represents a table cell. It supports the
following attributes:
- align -
String representing the cell contents horizontal alignment. It
can take the values "left", "center", "right".
- valign -
String representing the cell contents vertical alignment. It
can take the values "top", "center", "bottom".
- bgcolor -
String representing the background color for the cell.
- background -
String representing the URL for the background image for the cell.
- width -
The cell width. It can be either a string or an integer. To
represent relative widths it must be a string suffixed with a
"%" sign. A relative width is relative to the table total width.
- height -
The cell height in pixels. It can be either a string or an integer.
- nowrap -
Boolean flag signaling if the cell text contents should remain
in a single line or not.
- rowspan -
The number of rows the cell spans. It can be either a string
or an integer.
- colspan -
The number of columns the cell spans. It can be either a string
or an integer.
- class -
String representing the cascading style sheet class to be associated
with this element.
constructor
Initializes the object.
|
get attribName
Fetches the value of an attribute.
|
get attribName
Fetches the value of an attribute.
|
init attribList
Initializes the values of a set of attributes.
|
set attribName attribValue
Changes the values of one of the widget attributes.
|
|
constructor
HtmlTd constructor
Initializes the object.
-
get
HtmlTd get attribName
Fetches the value of an attribute.
- Parameters:
- attribName -
Symbol identifying the attribute whose value is being fetched.
- Returns:
-
The value of the
attribName attribute.
-
The
attribName argument must be one of the supported
attributes.
get
HtmlTd get attribName
Fetches the value of an attribute.
- Parameters:
- attribName -
Symbol identifying the attribute whose value is being fetched.
- Returns:
-
The value of the
attribName attribute.
-
The
attribName argument must be one of the supported
attributes.
init
HtmlTd init attribList
Initializes the values of a set of attributes.
- Parameters:
- attribList -
A list with the attributes and its values.
- Returns:
-
A reference to the object for which the method was called.
-
Initializes attributes of the widget. These
are attributes known to the
set and
get methods.
The attribList argument contains the attributes
names and values. It is a list where each
element specifies an attribute. Each element
is a two element list: a symbol identifying the attribute and
its new value.
set
HtmlTd set attribName attribValue
Changes the values of one of the widget attributes.
- Parameters:
- attribName -
Symbol identifying the attribute whose value will be modified.
- attribValue -
The new value of the attribute.
- Returns:
-
A reference to the object for which the method was called.
-
The
attribName argument must be the same as one of the
symbols passed to the init method, otherwise a
runtime error will occur.
Report a bug or request new features
© 2013