Table Row - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Maplets[Elements]

  

TableRow

  

specify a row in a table

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

TableRow(element_content)

Parameters

element_content

-

TableItem elements

Description

• 

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.

Examples

> 

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:

> 

with⁡MapletsElements:

> 

maplet≔Maplet⁡BoxCell⁡Table⁡A,B,1,2,3,4,as_needed,Button⁡OK,Shutdown⁡:

> 

MapletsDisplay⁡maplet

See Also

Maplets/OtherElements

Maplets[Display]

Maplets[Elements]

Maplets[Elements][BoxCell]

Maplets[Elements][Button]

Maplets[Elements][Shutdown]

Maplets[Elements][Table]

Maplets[Elements][TableHeader]

Maplets[Elements][TableItem]

Overview of Maplet Applications