Maplets[Elements]
TableRow
specify a row in a table
Calling Sequence
Parameters
Description
Examples
TableRow(element_content)
element_content
-
TableItem elements
The TableRow element specifies a row in a Maplet application table. The contents of each column in the row are defined by using the TableItem element.
A TableRow element can contain TableItem elements.
Note: Each TableRow must have the same number of TableItem elements. The number of TableItem elements in the TableHeader, if specified, must equal the number of TableItem elements in each TableRow.
A TableRow element can be contained in a Table element.
with⁡MapletsElements:
maplet≔Maplet⁡BoxCell⁡Table⁡TableHeader⁡TableItem⁡A,TableItem⁡B,TableRow⁡TableItem⁡caption=1,TableItem⁡caption=2,TableRow⁡TableItem⁡caption=3,TableItem⁡caption=4,as_needed,Button⁡OK,Shutdown⁡:
MapletsDisplay⁡maplet
This Maplet application can be rewritten as:
maplet≔Maplet⁡BoxCell⁡Table⁡A,B,1,2,3,4,as_needed,Button⁡OK,Shutdown⁡:
See Also
Maplets/OtherElements
Maplets[Display]
Maplets[Elements][BoxCell]
Maplets[Elements][Button]
Maplets[Elements][Shutdown]
Maplets[Elements][Table]
Maplets[Elements][TableHeader]
Maplets[Elements][TableItem]
Overview of Maplet Applications
Download Help Document