Edit

Share via


Word.TableOfAuthorities class

Represents a table of authorities in a Word document.

Extends

Remarks

[ API set: WordApiDesktop 1.4 ]

Properties

bookmark

Specifies the name of the bookmark from which to collect table of authorities entries.

category

Specifies the category of entries to be included in the table of authorities. Values 0 through 16 correspond to the items listed in the Category box of the Table of Authorities dialog. To learn how to access this through the Word UI, see Create a table of authorities.

context

The request context associated with the object. This connects the add-in's process to the Office host application's process.

entrySeparator

Specifies a separator of up to five characters. This appears between the table of authorities entry and its page number.

isCategoryHeaderIncluded

Specifies whether the category name for a group of entries appears in the table of authorities.

isEntryFormattingKept

Specifies whether the entries in the table of authorities are displayed with their formatting in the table.

isPassimUsed

Specifies whether references to the same authority that are repeated on five or more pages are replaced with "Passim".

pageNumberSeparator

Specifies a separator of up to five characters. This appears between individual page references in the table of authorities.

pageRangeSeparator

Specifies a separator of up to five characters. This appears between ranges of pages in the table of authorities.

range

Gets the portion of a document that is this table of authorities.

sequenceName

Specifies the Sequence (SEQ) field identifier for the table of authorities.

sequenceSeparator

Specifies a separator of up to five characters. This appears between the sequence number and the page number in the table of authorities.

tabLeader

Specifies the leader character that appears between entries and their associated page numbers in the table of authorities.

Methods

delete()

Deletes this table of authorities.

load(options)

Queues up a command to load the specified properties of the object. You must call context.sync() before reading the properties.

load(propertyNames)

Queues up a command to load the specified properties of the object. You must call context.sync() before reading the properties.

load(propertyNamesAndPaths)

Queues up a command to load the specified properties of the object. You must call context.sync() before reading the properties.

set(properties, options)

Sets multiple properties of an object at the same time. You can pass either a plain object with the appropriate properties, or another API object of the same type.

set(properties)

Sets multiple properties on the object at the same time, based on an existing loaded object.

toJSON()

Overrides the JavaScript toJSON() method in order to provide more useful output when an API object is passed to JSON.stringify(). (JSON.stringify, in turn, calls the toJSON method of the object that's passed to it.) Whereas the original Word.TableOfAuthorities object is an API object, the toJSON method returns a plain JavaScript object (typed as Word.Interfaces.TableOfAuthoritiesData) that contains shallow copies of any loaded child properties from the original object.

track()

Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for context.trackedObjects.add(thisObject). If you're using this object across .sync calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.

untrack()

Release the memory associated with this object, if it has previously been tracked. This call is shorthand for context.trackedObjects.remove(thisObject). Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call context.sync() before the memory release takes effect.

Property Details

bookmark

Specifies the name of the bookmark from which to collect table of authorities entries.

bookmark: string;

Property Value

string

Remarks

[ API set: WordApiDesktop 1.4 ]

category

Specifies the category of entries to be included in the table of authorities. Values 0 through 16 correspond to the items listed in the Category box of the Table of Authorities dialog. To learn how to access this through the Word UI, see Create a table of authorities.

category: number;

Property Value

number

Remarks

[ API set: WordApiDesktop 1.4 ]

context

The request context associated with the object. This connects the add-in's process to the Office host application's process.

context: RequestContext;

Property Value

entrySeparator

Specifies a separator of up to five characters. This appears between the table of authorities entry and its page number.

entrySeparator: string;

Property Value

string

Remarks

[ API set: WordApiDesktop 1.4 ]

isCategoryHeaderIncluded

Specifies whether the category name for a group of entries appears in the table of authorities.

isCategoryHeaderIncluded: boolean;

Property Value

boolean

Remarks

[ API set: WordApiDesktop 1.4 ]

isEntryFormattingKept

Specifies whether the entries in the table of authorities are displayed with their formatting in the table.

isEntryFormattingKept: boolean;

Property Value

boolean

Remarks

[ API set: WordApiDesktop 1.4 ]

isPassimUsed

Specifies whether references to the same authority that are repeated on five or more pages are replaced with "Passim".

isPassimUsed: boolean;

Property Value

boolean

Remarks

[ API set: WordApiDesktop 1.4 ]

pageNumberSeparator

Specifies a separator of up to five characters. This appears between individual page references in the table of authorities.

pageNumberSeparator: string;

Property Value

string

Remarks

[ API set: WordApiDesktop 1.4 ]

pageRangeSeparator

Specifies a separator of up to five characters. This appears between ranges of pages in the table of authorities.

pageRangeSeparator: string;

Property Value

string

Remarks

[ API set: WordApiDesktop 1.4 ]

range

Gets the portion of a document that is this table of authorities.

readonly range: Word.Range;

Property Value

Remarks

[ API set: WordApiDesktop 1.4 ]

sequenceName

Specifies the Sequence (SEQ) field identifier for the table of authorities.

sequenceName: string;

Property Value

string

Remarks

[ API set: WordApiDesktop 1.4 ]

sequenceSeparator

Specifies a separator of up to five characters. This appears between the sequence number and the page number in the table of authorities.

sequenceSeparator: string;

Property Value

string

Remarks

[ API set: WordApiDesktop 1.4 ]

tabLeader

Specifies the leader character that appears between entries and their associated page numbers in the table of authorities.

tabLeader: Word.TabLeader | "Spaces" | "Dots" | "Dashes" | "Lines" | "Heavy" | "MiddleDot";

Property Value

Word.TabLeader | "Spaces" | "Dots" | "Dashes" | "Lines" | "Heavy" | "MiddleDot"

Remarks

[ API set: WordApiDesktop 1.4 ]

Method Details

delete()

Deletes this table of authorities.

delete(): void;

Returns

void

Remarks

[ API set: WordApiDesktop 1.4 ]

load(options)

Queues up a command to load the specified properties of the object. You must call context.sync() before reading the properties.

load(options?: Word.Interfaces.TableOfAuthoritiesLoadOptions): Word.TableOfAuthorities;

Parameters

options
Word.Interfaces.TableOfAuthoritiesLoadOptions

Provides options for which properties of the object to load.

Returns

load(propertyNames)

Queues up a command to load the specified properties of the object. You must call context.sync() before reading the properties.

load(propertyNames?: string | string[]): Word.TableOfAuthorities;

Parameters

propertyNames

string | string[]

A comma-delimited string or an array of strings that specify the properties to load.

Returns

load(propertyNamesAndPaths)

Queues up a command to load the specified properties of the object. You must call context.sync() before reading the properties.

load(propertyNamesAndPaths?: {
            select?: string;
            expand?: string;
        }): Word.TableOfAuthorities;

Parameters

propertyNamesAndPaths

{ select?: string; expand?: string; }

propertyNamesAndPaths.select is a comma-delimited string that specifies the properties to load, and propertyNamesAndPaths.expand is a comma-delimited string that specifies the navigation properties to load.

Returns

set(properties, options)

Sets multiple properties of an object at the same time. You can pass either a plain object with the appropriate properties, or another API object of the same type.

set(properties: Interfaces.TableOfAuthoritiesUpdateData, options?: OfficeExtension.UpdateOptions): void;

Parameters

properties
Word.Interfaces.TableOfAuthoritiesUpdateData

A JavaScript object with properties that are structured isomorphically to the properties of the object on which the method is called.

options
OfficeExtension.UpdateOptions

Provides an option to suppress errors if the properties object tries to set any read-only properties.

Returns

void

set(properties)

Sets multiple properties on the object at the same time, based on an existing loaded object.

set(properties: Word.TableOfAuthorities): void;

Parameters

Returns

void

toJSON()

Overrides the JavaScript toJSON() method in order to provide more useful output when an API object is passed to JSON.stringify(). (JSON.stringify, in turn, calls the toJSON method of the object that's passed to it.) Whereas the original Word.TableOfAuthorities object is an API object, the toJSON method returns a plain JavaScript object (typed as Word.Interfaces.TableOfAuthoritiesData) that contains shallow copies of any loaded child properties from the original object.

toJSON(): Word.Interfaces.TableOfAuthoritiesData;

Returns

track()

Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for context.trackedObjects.add(thisObject). If you're using this object across .sync calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.

track(): Word.TableOfAuthorities;

Returns

untrack()

Release the memory associated with this object, if it has previously been tracked. This call is shorthand for context.trackedObjects.remove(thisObject). Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call context.sync() before the memory release takes effect.

untrack(): Word.TableOfAuthorities;

Returns