Office.GoToByIdOptions interface
Provides options for whether to select the location that is navigated to.
Remarks
The behavior caused by the options.selectionMode option varies by Office application:
In Excel: Office.SelectionMode.Selected
selects all content in the binding, or named item. Office.SelectionMode.None
for text bindings, selects the cell; for matrix bindings, table bindings, and named items, selects the first data cell (not first cell in header row for tables).
In PowerPoint: Office.SelectionMode.Selected
selects the slide title or first textbox on the slide. Office.SelectionMode.None
doesn't select anything.
In Word: Office.SelectionMode.Selected
selects all content in the binding. Office.SelectionMode.None
for text bindings, moves the cursor to the beginning of the text; for matrix bindings and table bindings, selects the first data cell (not first cell in header row for tables).
Properties
async |
A user-defined item of any type that is returned, unchanged, in the asyncContext property of the AsyncResult object that is passed to a callback. |
selection |
Specifies whether the location specified by the |
Property Details
asyncContext
A user-defined item of any type that is returned, unchanged, in the asyncContext property of the AsyncResult object that is passed to a callback.
asyncContext?: any
Property Value
any
selectionMode
Specifies whether the location specified by the id
parameter is selected (highlighted). Use Office.SelectionMode or string equivalent. See the Remarks for more information.
selectionMode?: Office.SelectionMode | string
Property Value
Office.SelectionMode | string
Office Add-ins