跳到主要内容

SetSpacingLine

设置段落行距。如果 sLineRule 参数的值为 "atLeast" 或 "exact",则 nLine 的值将被解释为磅的二十分之一。如果 sLineRule 参数的值为 "auto",则 nLine 参数的值将被解释为行的 240 分之一。

继承自 ApiParaPr.SetSpacingLine

示例

设置电子表格中的段落行距。

// How to add a spacing line between paragraphs in a spreadsheet.

// Get a paragraph from the shape's content then add a text specifying spacing between text lines in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let fill = Api.CreateSolidFill(Api.RGB(255, 111, 61));
let stroke = Api.CreateStroke(0, Api.CreateNoFill());
let shape = worksheet.AddShape("flowChartOnlineStorage", 120 * 36000, 70 * 36000, fill, stroke, 0, 2 * 36000, 0, 3 * 36000);
let content = shape.GetContent();
let paragraph = content.GetElement(0);
let paraPr = paragraph.GetParaPr();
paraPr.SetSpacingLine(3 * 240, "auto");
paragraph.AddText("Paragraph 1. Spacing: 3 times of a common paragraph line spacing.");
paragraph.AddLineBreak();
paragraph.AddText("These sentences are used to add lines for demonstrative purposes. ");
paragraph.AddText("These sentences are used to add lines for demonstrative purposes. ");