ReplaceTextSmart
Replaces each paragraph (or text in cell) in the select with the corresponding text from an array of strings.
Syntax
expression.ReplaceTextSmart(arrString, sParaTab, sParaNewLine);
expression
- A variable that represents a Api class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
arrString | Required | Array | An array of replacement strings. | |
sParaTab | Optional | string | " " | A character which is used to specify the tab in the source text. |
sParaNewLine | Optional | string | " " | A character which is used to specify the line break character in the source text. |
Returns
boolean
Example
window.Asc.plugin.executeMethod ("ReplaceTextSmart", [Asc.scope.arr, String.fromCharCode(9), String.fromCharCode(13)], function (isDone) {
if (!isDone)
window.Asc.plugin.callCommand (function () {
Api.ReplaceTextSmart (Asc.scope.arr);
});
});