GetText

function GetText(
  oPr: object = null,
  oPr.Numbering: boolean = false,
  oPr.Math: boolean = false,
  oPr.NewLineSeparator: string = '\r',
  oPr.TabSymbol: string = '\t',
): string

Description

Returns the paragraph text.

Parameters

oProbjectdefault: null

The resulting string display properties.

oPr.Numberingbooleandefault: false

Defines if the resulting string will include numbering or not.

oPr.Mathbooleandefault: false

Defines if the resulting string will include mathematical expressions or not.

oPr.NewLineSeparatorstringdefault: '\r'

Defines how the line separator will be specified in the resulting string.

oPr.TabSymbolstringdefault: '\t'

Defines how the tab will be specified in the resulting string (does not apply to numbering).

Returns

string

Try It

var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("\tThis is just a sample text.");
var sText = oParagraph.GetText({"Numbering": true, "Math": true, "NewLineSeparator": "\r", "TabSymbol": "\t"});
oParagraph = Api.CreateParagraph();
oParagraph.AddText("The text of the first paragraph: " + sText);
oDocument.Push(oParagraph);

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).