GetNextShape
返回下一个内联形状(如果存在)。
语法
expression.GetNextShape();
expression - 表示 ApiShape 类的变量。
参数
此方法没有任何参数。
返回值
ApiShape | null
示例
此示例展示如何获取下一个内联形状。
// How to get next shape from the current one.
// Color the next shape with a solid fill.
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
let gs1 = Api.CreateGradientStop(Api.RGB(255, 213, 191), 0);
let gs2 = Api.CreateGradientStop(Api.RGB(255, 111, 61), 100000);
let fill = Api.CreateLinearGradientFill([gs1, gs2], 5400000);
let stroke = Api.CreateStroke(0, Api.CreateNoFill());
let shape1 = Api.CreateShape("rect", 3212465, 963295, fill, stroke);
paragraph.AddDrawing(shape1);
let shape2 = Api.CreateShape("wave", 3212465, 963295, fill, stroke);
paragraph.AddDrawing(shape2);
let nextShape = shape1.GetNextShape();
fill = Api.CreateSolidFill(Api.RGB(51, 51, 51));
nextShape.Fill(fill);