• Post category:ApiDocument
  • Запись изменена:08.11.2022

GetAllCaptionParagraphs(sCaption) → { Array.<ApiParagraph> }

Возвращает все абзацы заголовков указанного типа из текущего документа.

Параметры:

НазваниеТипОписание
sCaptionCaptionLabel | строковыйМетка подписи («Уравнение», «Знак», «Таблица» или другая метка подписи).

Возвращает:

Тип массив.<ApiParagraph>

Пример

builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oDrawing = Api.CreateImage("url-test-image.png", 60 * 36000, 35 * 36000);
oParagraph.AddDrawing(oDrawing);
oParagraph = Api.CreateParagraph();
oDocument.Push(oParagraph);
oParagraph.AddCaption("", "Figure", false, "Arabic", false, undefined, "hyphen");
var aCaptionParagraphs = oDocument.GetAllCaptionParagraphs("Figure");
aCaptionParagraphs[0].SetCaps(true);
builder.SaveFile("docx", "GetAllCaptionParagraphs.docx");
builder.CloseFile();