跳到主要内容

SetOutLine

设置指定图形对象的轮廓属性。

语法

expression.SetOutLine(oStroke);

expression - 表示 ApiDrawing 类的变量。

参数

名称必需/可选数据类型默认值描述
oStroke必需ApiStroke用于创建图形对象轮廓的笔触。

返回值

boolean

示例

此示例设置指定图形对象的轮廓属性。

// How to outline the drawing with the stroke.

// Set the borders of the shape.

const presentation = Api.GetPresentation();
const slide = presentation.GetSlideByIndex(0);
const fill = Api.CreateSolidFill(Api.CreateRGBColor(255, 111, 61));
let stroke = Api.CreateStroke(0, Api.CreateNoFill());
const drawing2 = Api.CreateShape("cube", 150 * 36000, 80 * 36000, fill, stroke);
drawing2.SetPosition(608400, 3267200);
let stroke2 = Api.CreateStroke(36000, Api.CreateSolidFill(Api.CreateRGBColor(51, 51, 51)));
drawing2.SetOutLine(stroke2);
slide.AddObject(drawing2);