OtherPane

Syntax

OtherPane

Remarks

Moves the insertion point to its most recent position in the next pane of the active window. OtherPane is often used in macros that open the annotation or footnote panes.

Example

This example inserts a footnote and then returns the insertion point to the footnote reference mark. In page layout view, where footnotes are not inserted in a separate pane, the instruction GoBack returns the insertion point to the reference mark. In normal view or outline view, the instruction OtherPane returns the insertion point.


FntText$ = "This is the footnote text"
InsertFootnote
Insert FntText$
If ViewPage() Then
    GoBack
Else
    OtherPane
End If

See Also

ClosePane, DocSplit, WindowPane()