Microsoft Word Suite
169
custom tab
True if the specified tab stop is a custom tab stop. Read-only.
next tab stop
Returns the next tab stop in the list. Read-only.
previous tab stop
Returns the previous tab stop in the list. Read-only.
tab leader
Returns or sets the character between entries and their page numbers in a table of contents.
Read/write.
Can be one of the following:
·
tab leader dashes
·
tab leader dots
·
tab leader heavy
·
tab leader lines
·
tab leader middle dot
·
tab leader spaces
tab stop position
Returns or sets the position of a tab stop relative to the left margin. Read/write.
Class: table of authorities
Plural
tables of authorities
Represents a single table of authorities in a document (a TOA field). The tables of authorities list
includes all the tables of authorities in a document.
Use table of authorities index, where index is the index number, to return a single table of
authorities object. The index number represents the position of the table of authorities in the
document. The following example includes category headers in the first table of authorities in the
active document and then updates the table.
set myTOA to table of authorities 1 of active document
set include category header of myTOA to true
update myTOA
To add a table of authorities to a document, use the make command. The following example adds a
table of authorities that includes all categories at the beginning of the active document.
set myRange to set range text object of active document start 0 end 0
make new table of authorities at active document with properties ¬
{text object:myRange, passim:true, category:0, entry separator:", "}