* Returns all the text within `range` as a single string. * @param {IRange} range The range to work with. * * @returns {String}
(range)
| 165 | * @returns {String} |
| 166 | **/ |
| 167 | getTextRange(range) { |
| 168 | return this.getLinesForRange(range).join(this.getNewLineCharacter()); |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * Returns all the text within `range` as an array of lines. |