跳到主要内容

AddPath

向当前几何形状添加新路径。

语法

expression.AddPath();

expression - 表示 ApiGeometry 类的变量。

参数

此方法没有任何参数。

返回值

ApiPath | null

示例

创建自定义三角形几何图形并将其应用于形状。在文档中使用基本路径绘制命令:MoveTo、LineTo 和 Close。

// How to add the path for a geometry in a document?

// Add the path and display the result in a document.

let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
let customGeometry = Api.CreateCustomGeometry();
let path = customGeometry.AddPath();
path.SetWidth(100 * 36000);
path.SetHeight(100 * 36000);
path.SetStroke(true);
path.SetFill("norm");
path.MoveTo(50 * 36000, 0);
path.LineTo(70 * 36000, 45 * 36000);
path.LineTo(55 * 36000, 70 * 36000);
path.LineTo(100 * 36000, 100 * 36000);
path.LineTo(0, 100 * 36000);
path.Close();
let fill = Api.CreateSolidFill(Api.RGB(255, 200, 100));
let stroke = Api.CreateStroke(36000, Api.CreateSolidFill(Api.RGB(200, 100, 0)));
let shape = Api.CreateShape("rect", 100 * 36000, 100 * 36000, fill, stroke);
shape.SetGeometry(customGeometry);
paragraph.AddDrawing(shape);