Package com.inductiveautomation.rm.text
Class RMTextSel
- java.lang.Object
- 
- com.inductiveautomation.rm.text.RMTextSel
 
- 
 public class RMTextSel extends java.lang.ObjectA class to represent a selection of text.
- 
- 
Constructor SummaryConstructors Constructor Description RMTextSel(RMTextEditor aText, int aStart, int anEnd)Creates a new selection.RMTextSel(RMTextEditor aText, int aStart, int anEnd, int anAnchor)Creates a new selection.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAnchor()Returns the anchor.intgetCharLeft()Moves the selection index backward a character (or if a range is selected, moves to beginning of range).intgetCharRight()Moves the selection index forward a character (or if a range is selected, moves to end of range).intgetEnd()Returns the end.intgetLineEnd()Moves the insertion point to next newline or text end.intgetLineStart()Moves the insertion point to the beginning of line.intgetSize()The length.intgetStart()Returns the start.java.lang.StringgetString()Returns the selected text string.RMTextEditorgetText()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 Detail- 
RMTextSelpublic RMTextSel(RMTextEditor aText, int aStart, int anEnd) Creates a new selection.
 - 
RMTextSelpublic RMTextSel(RMTextEditor aText, int aStart, int anEnd, int anAnchor) Creates a new selection.
 
- 
 - 
Method Detail- 
getTextpublic RMTextEditor getText() Returns 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.
 - 
getStringpublic java.lang.String getString() Returns 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).
 - 
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.
 - 
isWordCharprotected boolean isWordChar(char c) Returns whether a character should be considered is part of a word when WordSelecting.
 
- 
 
-