Microsoft Word Suite
177
no proofing
True if the spelling and grammar checker ignores documents based on this template.
Read/write.
path
Returns the path to the specified template object. Read-only.
Note The path doesn't include a trailing character; for example, Macintosh HD:Users:Shared.
To add the character that separates folders and drive letters, use the path separator property of
the application class. To return the file name without the path and use the full name property
to return the file name and the path together, use the name property.
saved
True if the specified template hasn't changed since it was last saved. False if Word displays a
prompt to save changes when the document is closed. Read/write.
template type
Returns the template type. Read-only.
Can be one of the following:
·
attached template
·
global template
·
normal template
Class: text column
Plural
text columns
Represents a single text column. The text columns list includes all the columns in a document or
section of a document.
Use text column index, where index is the index number, to return a single text column object. The
index number represents the position of the column in the text columns list (counting from left to
right).
The following example sets the space after the first text column in the active document to 0.5 inch.
set space after of text column 1 of page setup of active document to ¬
inches to points inches 0.5
To add a column to the list of columns, use the make command. By default, there's one text column
in the text columns list. The following example adds a 2.5-inch-wide column to the active
document.
make new text column at page setup of active document with properties ¬
{width:inches to points inches 2.5, space after:inches to points ¬
inches
0.5}