• Post category:ApiParagraph
  • Запись изменена:12.11.2022

GetSpacingLineValue() → { twips | line240 | undefined }

Унаследованный от: ApiParaPr#GetSpacingLineValue

Возвращает значение межстрочного интервала абзаца.

Параметры:

Этот метод не имеет параметров.

Возвращает:

Тип twips | line240 | undefined

Пример

builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.SetSpacingLine(3 * 240, "auto");
oParagraph.AddText("Paragraph 1. Spacing: 3 times of a common paragraph line spacing.");
oParagraph.AddLineBreak();
oParagraph.AddText("These sentences are used to add lines for demonstrative purposes. ");
oParagraph.AddText("These sentences are used to add lines for demonstrative purposes. ");
oParagraph.AddLineBreak();
var nSpacingLineValue = oParagraph.GetSpacingLineValue();
oParagraph.AddText("Spacing line value: " + nSpacingLineValue);
builder.SaveFile("docx", "GetSpacingLineValue.docx");
builder.CloseFile();