Created
March 26, 2020 11:42
-
-
Save bjoerntx/02ff4872f3de098983359c26836da230 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function GetValues() | |
{ | |
TXTextControl.selection.getStart( | |
function (curSelStart) { | |
// success | |
console.log(curSelStart); | |
} | |
); | |
TXTextControl.selection.getLength( | |
function (curSelLength) { | |
// success | |
console.log(curSelLength); | |
} | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment