Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Word.SelectionMode enum

Package:
word

Represents where the cursor (insertion point) is set in the document after a selection.

Remarks

API set: WordApi 1.1

Used by

Examples

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/35-ranges/scroll-to-range.yaml

await Word.run(async (context) => {
 // Select can be at the start or end of a range; this by definition moves the insertion point without selecting the range.
 context.document.body.paragraphs.getLast().select(Word.SelectionMode.end);

 await context.sync();
});

Fields

end = "End"

The cursor is at the end of the selection (just after the end of the selected range).

select = "Select"

The entire range is selected.

start = "Start"

The cursor is at the beginning of the selection (just before the start of the selected range).


Feedback

Was this page helpful?