Skip to main content
A newer version of this page is available. .
cut

RichEditCommands.goToFooter Property

Gets a command to substitute a header sub-document with a footer sub-document of the same page as an active sub-document.

Declaration

goToFooter: GoToFooterCommand

Property Value

Type Description
GoToFooterCommand

A GoToFooterCommand object that provides methods for executing the command and checking its state.

Remarks

You can invoke this command by calling the execute method.

The execute method checks the command state (obtained using the getState method) before executing, and decides whether the action can be performed. The execute and getState methods are members of the GoToFooterCommand class.

Usage example:


richEdit.commands.goToFooter.execute();

If the footer sub-document does not exist for the current page, the command creates it.

The active sub-document is available via the RichEditDocument.activeSubDocument property.

See Also