GetAllParagraphs

function GetAllParagraphs(): ApiParagraph[]

Description

Returns a collection of paragraphs that represents all the paragraphs in the specified range.

Returns

ApiParagraph[]

Try It

var oDocument = editor.GetDocument();
var oFParagraph = oDocument.GetElement(0);
oFParagraph.AddText("First paragraph");
var oSParagraph = editor.CreateParagraph();
oSParagraph.AddText("Second Paragraph");
oDocument.Push(oSParagraph);
var oRange = oDocument.GetRange(0, 28);
var arrParagraphs = oRange.GetAllParagraphs();
arrParagraphs[0].SetBold("true");

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