跳到主要内容

GetPrevious

返回上一个段落。

语法

expression.GetPrevious();

expression - 表示 ApiParagraph 类的变量。

参数

此方法没有任何参数。

返回值

ApiParagraph

示例

此示例展示如何获取上一个段落。

// How to get the previous paragraph from the current one.

// Add two paragraphs into the shape content then get the first one using the GetPrevious method.

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", 60 * 36000, 35 * 36000, fill, stroke, 0, 2 * 36000, 0, 3 * 36000);
let content = shape.GetContent();
content.RemoveAllElements();
let paragraph1 = Api.CreateParagraph();
paragraph1.AddText("This is the first paragraph.");
content.Push(paragraph1);
let paragraph2 = Api.CreateParagraph();
paragraph2.AddText("This is the second paragraph.");
content.Push(paragraph2);
let previousParagraph = paragraph2.GetPrevious();
previousParagraph.SetBold(true);