Edit

Share via


Word.TableOfFigures class

Represents a table of figures in a Word document.

Extends

Remarks

[ API set: WordApiDesktop 1.4 ]

Properties

additionalHeadingStyles

Gets the additional styles used for the table of figures. The default "Heading 1" - "Heading 9" styles aren't included in this collection.

areBuiltInHeadingStylesUsed

Specifies whether built-in heading styles are used for the table of figures.

areFieldsUsed

Specifies whether Table of Contents Entry (TC) fields are included in the table of figures.

areHyperlinksUsedOnWeb

Specifies whether entries in the table of figures should be formatted as hyperlinks when publishing to the web.

arePageNumbersHiddenOnWeb

Specifies whether the page numbers in the table of figures should be hidden when publishing to the web.

arePageNumbersIncluded

Specifies whether page numbers are included in the table of figures.

arePageNumbersRightAligned

Specifies whether page numbers are aligned with the right margin in the table of figures.

captionLabel

Specifies the label that identifies the items to be included in the table of figures.

context

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

isLabelIncluded

Specifies whether the caption label and caption number are included in the table of figures.

lowerHeadingLevel

Specifies the ending heading level for the table of figures. Must be a value from 1 to 9 and greater than upperHeadingLevel.

range

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

tabLeader

Specifies the character between entries and their page numbers in the table of figures.

tableId

Specifies a one-letter identifier from TC fields that's used for the table of figures.

upperHeadingLevel

Specifies the starting heading level for the table of figures. Must be a value from 1 to 9 and smaller than lowerHeadingLevel.

Methods

delete()

Deletes this table of figures.

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.TableOfFigures object is an API object, the toJSON method returns a plain JavaScript object (typed as Word.Interfaces.TableOfFiguresData) 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.

updatePageNumbers()

Updates the entire table of figures.

Property Details

additionalHeadingStyles

Gets the additional styles used for the table of figures. The default "Heading 1" - "Heading 9" styles aren't included in this collection.

readonly additionalHeadingStyles: Word.HeadingStyleCollection;

Property Value

Remarks

[ API set: WordApiDesktop 1.4 ]

areBuiltInHeadingStylesUsed

Specifies whether built-in heading styles are used for the table of figures.

areBuiltInHeadingStylesUsed: boolean;

Property Value

boolean

Remarks

[ API set: WordApiDesktop 1.4 ]

areFieldsUsed

Specifies whether Table of Contents Entry (TC) fields are included in the table of figures.

areFieldsUsed: boolean;

Property Value

boolean

Remarks

[ API set: WordApiDesktop 1.4 ]

areHyperlinksUsedOnWeb

Specifies whether entries in the table of figures should be formatted as hyperlinks when publishing to the web.

areHyperlinksUsedOnWeb: boolean;

Property Value

boolean

Remarks

[ API set: WordApiDesktop 1.4 ]

arePageNumbersHiddenOnWeb

Specifies whether the page numbers in the table of figures should be hidden when publishing to the web.

arePageNumbersHiddenOnWeb: boolean;

Property Value

boolean

Remarks

[ API set: WordApiDesktop 1.4 ]

arePageNumbersIncluded

Specifies whether page numbers are included in the table of figures.

arePageNumbersIncluded: boolean;

Property Value

boolean

Remarks

[ API set: WordApiDesktop 1.4 ]

arePageNumbersRightAligned

Specifies whether page numbers are aligned with the right margin in the table of figures.

arePageNumbersRightAligned: boolean;

Property Value

boolean

Remarks

[ API set: WordApiDesktop 1.4 ]

captionLabel

Specifies the label that identifies the items to be included in the table of figures.

captionLabel: string;

Property Value

string

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

isLabelIncluded

Specifies whether the caption label and caption number are included in the table of figures.

isLabelIncluded: boolean;

Property Value

boolean

Remarks

[ API set: WordApiDesktop 1.4 ]

lowerHeadingLevel

Specifies the ending heading level for the table of figures. Must be a value from 1 to 9 and greater than upperHeadingLevel.

lowerHeadingLevel: number;

Property Value

number

Remarks

[ API set: WordApiDesktop 1.4 ]

range

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

readonly range: Word.Range;

Property Value

Remarks

[ API set: WordApiDesktop 1.4 ]

tabLeader

Specifies the character between entries and their page numbers in the table of figures.

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 ]

tableId

Specifies a one-letter identifier from TC fields that's used for the table of figures.

tableId: string;

Property Value

string

Remarks

[ API set: WordApiDesktop 1.4 ]

upperHeadingLevel

Specifies the starting heading level for the table of figures. Must be a value from 1 to 9 and smaller than lowerHeadingLevel.

upperHeadingLevel: number;

Property Value

number

Remarks

[ API set: WordApiDesktop 1.4 ]

Method Details

delete()

Deletes this table of figures.

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.TableOfFiguresLoadOptions): Word.TableOfFigures;

Parameters

options
Word.Interfaces.TableOfFiguresLoadOptions

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.TableOfFigures;

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.TableOfFigures;

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.TableOfFiguresUpdateData, options?: OfficeExtension.UpdateOptions): void;

Parameters

properties
Word.Interfaces.TableOfFiguresUpdateData

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.TableOfFigures): void;

Parameters

properties
Word.TableOfFigures

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.TableOfFigures object is an API object, the toJSON method returns a plain JavaScript object (typed as Word.Interfaces.TableOfFiguresData) that contains shallow copies of any loaded child properties from the original object.

toJSON(): Word.Interfaces.TableOfFiguresData;

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.TableOfFigures;

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.TableOfFigures;

Returns

updatePageNumbers()

Updates the entire table of figures.

updatePageNumbers(): void;

Returns

void

Remarks

[ API set: WordApiDesktop 1.4 ]