* Return data as copyable text (tab separated columns intended for clipboard copy to an external application). * * @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 })
| 1143 | * @returns {string} |
| 1144 | */ |
| 1145 | getCopyableText(start: { row: number; col: number }, end: { row: number; col: number }) { |
| 1146 | return stringify(this.getRange(start, end, DataMap.DESTINATION_CLIPBOARD_GENERATOR)); |
| 1147 | } |
| 1148 | |
| 1149 | /** |
| 1150 | * Destroy instance. |
no test coverage detected