MCPcopy Index your code
hub / github.com/handsontable/handsontable / getText

Method getText

handsontable/src/dataMap/dataMap.ts:1134–1136  ·  view source on GitHub ↗

* 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 })

Source from the content-addressed store, hash-verified

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).

Callers

nothing calls this directly

Calls 2

getRangeMethod · 0.95
stringifyFunction · 0.90

Tested by

no test coverage detected