<row>
(in a table)
<row>
is a Sectional
component that functions as a container element for the individual <cell>
elements of a <tabular>
.
Attributes and Properties
Attribute | Type | Values |
---|---|---|
bottom = "…" | text | |
functionSymbols = "…" | ||
halign = "…" | text | |
header = "…" | boolean | "true" "false" |
left = "…" | text | |
parseScientificNotation = "…" | "true" "false" | |
referencesAreFunctionSymbols = "…" | ||
rowNum = "…" | text | |
splitSymbols = "…" | "true" "false" | |
valign = "…" | text |
Property | Type |
---|---|
$r.bottom | text |
$r.disabled | boolean |
$r.fixed | boolean |
$r.fixLocation | boolean |
$r.halign | text |
$r.header | boolean |
$r.hidden | boolean |
$r.left | text |
$r.rowNum | text |
$r.valign | text |
Example: a <row>
without attributes
The basic, unformatted structure of a <table>
is illustrated. Individual rows are contained
within a <tabular>
, and individual cells are contained within a <row>
.
Attribute Example: header
The header
attribute defines a <row>
with header styling.
Attribute Example: halign
The halign
attribute defines the horizontal alignment of content within
each <cell>
for the given <row>
. The available options
are left
(default), center
, and right
.
Attribute Example: valign
The valign
attribute defines the vertical alignment of content within
each <cell>
for the given <row>
. The available options
are top
, center
(default), and bottom
.
Attribute Example: left
The left
attribute defines the weight for the left border element of content
within each <cell>
for the given <row>
. The available options
are none
(default), minor
, medium
, and major
.
Note that the left
attribute can also be specified in the <tabular>
, which
then applies to the entire table. If specified in both locations, the specification
within the individual <row>
takes precedence.
Attribute Example: bottom
The bottom
attribute defines the weight for the bottom border element of
content within each <cell>
for the given <row>
. The available
options are none
(default), minor
, medium
, and major
.
Note that the bottom
attribute can also be specified in the <tabular>
, which
then applies to the entire table. If specified in both locations, the
specification within the individual <row>
takes precedence.