... including URL and other Internet Web site references, is subject to change. without notice. ... does not give you any license to these patents, tr
Document source : download.microsoft.com
Table Suite
519
Example
This example creates a 3x3 table at the beginning of the active document and then averages the
numbers in the last column.
set myTable to make new table at active documentwith properties ¬
{number of rows: 3, number of columns:3}
set content of text object of cell 3 of row 1 of myTable to "100"
set content of text object of cell 3 of row 2 of myTable to "50"
formula cell 3 of row 3 of myTable formula string "=Average(Above)"
Command: get border
Returns the specified border object.
Syntax
get border table/row/column/cell/row options/column options Required. An expression that
returns one of the specified objects.
which border enumeration Required.
Can be one of the following:
·
border top
·
border left
·
border bottom
·
border right
·
border horizontal
·
border vertical
·
border diagonal down
·
border diagonal up
Example
This example applies a double line border to the bottom of the first table in the active document.
set botBord to get border table 1 of active document which border ¬
border
bottom
set line style of botBord to line style double
set line width of botBord to line width25 point
Summary :
Can be one of the following: · border top · border left · border bottom · border right · border horizontal · border vertical · border diagonal down · border diagonal up Example This example applies a double line border to the bottom of the first table in the active document.
Tags :
set,table,line,actie,mytable,example,botbord,object,get,row,document,cell,bottom