Table Suite
524
Command: split cell
Splits a single table cell into multiple cells.
Syntax
split cell cell Required. An expression that returns a cell object.
[number of rows integer] Optional. The number of rows that the cell or group of cells is to be
split into.
[number of columns integer] Optional. The number of columns that the cell or group of cells is
to be split into.
Example
This example splits the first cell in the first table into two cells.
split cell (cell 1 of row 1 of table 1 of active document) number of columns 2
Command: split table
Inserts an empty paragraph immediately above the specified row in the table, and returns a Table
object that contains both the specified row and the rows that follow it.
Syntax
split table table Required. An expression that returns a table object.
row integer Required. The row that the table is to be split before.
Example
This example splits the first table in the active document between the first and second rows.
split table table 1 of active document row 2
Command: table sort
Sorts the specified table.
Syntax
table sort table/column Required. An expression that returns a table or column object.
[exclude header Boolean Optional. True to exclude the first row or paragraph from the sort
operation. The default value is False.
[field number integer] Optional. The fields to sort by. Word sorts by field number, then by
field number two, and then by field number three.
[sort field type enumeration] Optional. The respective sort types for field number, field
number two, and field number three. Can be one of the following: sort field alphanumeric,
sort field date, sort field syllable, sort field japan jis, sort field stroke, or sort field korea ks.
The default value is sort field alphanumeric.
[sort order enumeration] Optional. The sorting order to use when sorting field number, field
number two, and field number three. Can be one of the following: sort order ascending or
sort order descending. The default value is sort order ascending.