Class TextSel
java.lang.Object
com.inductiveautomation.snap.text.TextSel
A class to represent a selection of text.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionintReturns the anchor.intMoves the selection index down a line, trying preserve distance from beginning of line.intMoves the selection index backward a character (or if a range is selected, moves to beginning of range).intMoves the selection index forward a character (or if a range is selected, moves to end of range).intMoves the selection index up a line, trying to preserve distance from beginning of line.intgetEnd()Returns the end.Returns the line at selection end.intMoves the insertion point to next newline or text end.intMoves the insertion point to the beginning of line.getPath(double aWidth) Returns a path for two char indexes - it will be a a simple box with extensions for first/last lines.intgetSize()The length.intgetStart()Returns the start.Returns the line at selection start.Returns the selected text string.getText()Returns the text.booleanisEmpty()Returns whether selection is empty.protected booleanisWordChar(char c) Returns whether a character should be considered is part of a word when WordSelecting.
- 
Constructor Details- 
TextSelCreates a new selection.
- 
TextSelCreates a new selection.
- 
TextSelpublic TextSel(Text aText, double x1, double y1, double x2, double y2, boolean isWordSel, boolean isParaSel) Returns the selected range that would result from the given two points.
 
- 
- 
Method Details- 
getTextReturns the text.
- 
getStartpublic int getStart()Returns the start.
- 
getEndpublic int getEnd()Returns the end.
- 
getAnchorpublic int getAnchor()Returns the anchor.
- 
getSizepublic int getSize()The length.
- 
isEmptypublic boolean isEmpty()Returns whether selection is empty.
- 
getStringReturns the selected text string.
- 
getCharRightpublic int getCharRight()Moves the selection index forward a character (or if a range is selected, moves to end of range).
- 
getCharLeftpublic int getCharLeft()Moves the selection index backward a character (or if a range is selected, moves to beginning of range).
- 
getCharUppublic int getCharUp()Moves the selection index up a line, trying to preserve distance from beginning of line.
- 
getCharDownpublic int getCharDown()Moves the selection index down a line, trying preserve distance from beginning of line.
- 
getLineStartpublic int getLineStart()Moves the insertion point to the beginning of line.
- 
getLineEndpublic int getLineEnd()Moves the insertion point to next newline or text end.
- 
getStartLineReturns the line at selection start.
- 
getEndLineReturns the line at selection end.
- 
getPathReturns a path for two char indexes - it will be a a simple box with extensions for first/last lines.
- 
isWordCharprotected boolean isWordChar(char c) Returns whether a character should be considered is part of a word when WordSelecting.
 
-