The following commands all inspect and change the selection in the active document.
Select All
This behaves exactly as the Select All menu command in that it selects all content in the currently active Text object (eg: document body, table cell, etc).
Select All Document v1.0.1
This selects all content in the document across all Text objects.
Select Start
Select End
Places the caret (insertion point) at the start or end of the current selection.
Select Document Start v1.3
Places the caret (insertion point) at the very start of the document’s main body text.
Select Document End v1.3
Places the caret (insertion point) at the very end of the document’s main body text.
Adjust Selection Start By delta v2.1
Shifts the active selection’s starting point by the given number of characters.
If the given number of characters is positive, this will move the selection’s starting point forward, decreasing the selection’s length by a corresponding number of characters. The selection’s endpoint is unchanged, unless the shift is larger than the original selection’s length, which results in a zero length selection whose location is after the original selection.
If the given number of characters is negative, this will extend the selection backwards, increasing its length. The endpoint is unchanged.
Any shift that would create an out-of-bounds selection is safely and silently limited to the current text area.
Adjust Selection End By delta v2.1
Shifts the active selection’s ending point by the given number of characters.
If the given number of characters is positive, this will extend the selection’s length. The start point is unchanged.
If the given number of characters is negative, this will move the selection’s endpoint backward, decreasing the selection’s length by a corresponding number of characters. The selection’s start point is unchanged, unless the shift is larger than the original selection’s length, which results in a zero length selection whose location is before the original selection.
Any shift that would create an out-of-bounds selection is safely and silently limited to the current text area.
Adjust Selection Caret By delta v2.1
If the active selection is a caret (aka: insertion point or zero-length selection), then this command moves it forward or backward by the given number of characters. If the active selection is not a caret, the selection is converted to an insertion point located at the start of the active selection, and then that caret is shifted as requested.
Any shift that would create an out-of-bounds selection is safely and silently limited to the current text area.
Select Table number
Select Image number
Select Floating Image number v1.3
Select List Item number
Select Note number
Select Note Text number v2.0.5
Select Note Reference number
Select Note Reference In Note number v2.0.5
Select Paragraph number v1.0.1
Select Link number v1.0.2
Selects the Nth object (eg: table, image, etc) in the document. Eg: Select Image 2 will select the 2nd image in the document.
Select Page number
Selects the Nth page in the document, returning @true if the page exists. If the requested page does not exist, returns @false and leaves the selection unchanged.
If the desired page has no content (eg: forced blank page) then the selection will be zero characters in length and @true will be returned.
Select Next Table
Select Next Image
Select Next Floating Image v1.3
Select Next List Item
Select Next Note
Select Next Note Text v2.0.5
Select Next Note Reference
Select Next Note Reference in Note v2.0.5
Select Next Cross Reference v2.1
Select Next Paragraph v1.0.1
Select Next Paragraph v3.1
Select Next Link v1.0.2
The above commands all select the next object (table, image, etc) that appears after the current selection. If there is no such next object, these commands return @false and leave the selection unchanged.
Select Next Hyphenation v2.1.2
Selects the next character where hyphenation occurred in the document due to line wraps, as shown in the current document view. This includes automatic hyphenation and hyphenation due to soft or hard hyphen characters.
If there is no next hyphenation, this command return @false and leave the selection unchanged.
Select Previous Table v1.0.2
Select Previous Image v1.0.2
Select Previous Floating Image v1.3
Select Previous List Item v1.0.2
Select Previous Note v1.0.2
Select Previous Note Text v2.0.5
Select Previous Note Reference v1.0.2
Select Previous Note Reference in Note v2.0.5
Select Previous Cross Reference v2.1
Select Previous Paragraph v1.0.2
Select Previous Paragraph v3.1
Select Previous Link v1.0.2
Selects the previous object (table, image, etc) that appears before the current selection. If there is no preceding object, these commands return @false and leave the selection unchanged.
Select Previous Hyphenation v2.1.2
Operates just like Select Next Hyphenation (see above) but in reverse.
Select Relative Table offset v1.0.2
Select Relative Image offset v1.0.2
Select Relative Floating Image offset v1.3
Select Relative List Item offset v1.0.2
Select Relative Note offset v1.0.2
Select Relative Note Text offset v2.0.5
Select Relative Note Reference offset v1.0.2
Select Relative Note Reference in Note offset v2.0.5
Select Relative Paragraph offset v1.0.2
Select Relative Sentence offset v3.1
Select Relative Link offset v1.0.2
Selects the object (table, image, etc) that occurs after moving past offset objects from the current selection. For example, if offset is one, the next object is selected. Negative offsets will move the selection backwards. If the requested object does not exist, these instructions return @false and leave the selection unchanged.
Select Next Floating Content v2.0
Selects the next FloatingContent object (eg: floating image, text box, shape, etc) after the current selection. Floating content is ordered by its anchoring paragraph. For contents anchored to the same paragraph, they are generally visited from top-to-bottom based on their vertical position on the page.
Returns @true if the next floating content was selected. Returns @false if there is no next content to select, leaving the current selection unchanged.
Select Previous Floating Content v2.0
Just like Select Next Floating Content, but visits content in reverse order.
Previous Chapter TableSelection Object |
<< index >> |
Next Chapter Text Object |