CF_XLS_Row
Description
Creates a new row within a workbook
sheet. This tag can only be used within the
CF_XLS_Sheet tag.
Syntax
<CF_XLS_Row
Height = "integer"
HeightInPoints = "decimal">
....CF_XLS_Cell tags....
</CF_XLS_Row>
Attributes
| Attribute |
Req/Opt |
Default |
Description |
| Height |
Opt |
1 |
An integer that represents the height
of the row. The height is 1 unit = 17 pixels. This
works out to be the default for Excel if the default
font is used. Larger fonts will require larger row
heights. |
| HeightInPoints |
Opt |
12.75 |
A floating point number represented
the height of a row. This attribute allows for very
accurate row heights. The value represents the first
number that is visible when manually changing the
height of a row in Excel. |
Usage
You can use the following ColdFusion form
control tags within the CF_XLS_Sheet tag:
- CF_XLS_Row Used to create
a new row within the sheet.
Example
See the examples
page.