This interface represents a selected range in a text file. Both first and last are inclusive.
interface ITextSelection {
// Properties
${first}: ${ITextPosition};
${last}: ${ITextPosition};
}
// This interface is not available in managed environment
// This interface is not available in native environment
first: ${ITextPosition};
// This property is not available in managed environment
// This property is not available in native environment
Selection start position.
last: ${ITextPosition};
// This property is not available in managed environment
// This property is not available in native environment
Selection end position.