* Return data as text (tab separated columns). * * @param {object} [start] Start selection position. Visual indexes. * @param {object} [end] End selection position. Visual indexes. * @returns {string}
(start: { row: number; col: number }, end: { row: number; col: number })
| 1132 | * @returns {string} |
| 1133 | */ |
| 1134 | getText(start: { row: number; col: number }, end: { row: number; col: number }) { |
| 1135 | return stringify(this.getRange(start, end, DataMap.DESTINATION_RENDERER)); |
| 1136 | } |
| 1137 | |
| 1138 | /** |
| 1139 | * Return data as copyable text (tab separated columns intended for clipboard copy to an external application). |