跳到主要内容

SetRightBorder

指定将在指定段落周围的页面右侧显示的边框。

语法

expression.SetRightBorder(sType, nSize, nSpace, r, g, b);

expression - 表示 ApiParaPr 类的变量。

参数

名称必需/可选数据类型默认值描述
sType必需BorderType边框样式。
nSize必需pt_8当前右侧边框的宽度,以磅的八分之一为单位。
nSpace必需pt用于放置此边框的段落右侧间距偏移量,以磅为单位。
r必需byte红色分量值。
g必需byte绿色分量值。
b必需byte蓝色分量值。

返回值

boolean

示例

此示例指定将在指定段落周围的页面右侧显示的边框。

// How to add border to the right side of the paragraph.

// Add right single border.

let doc = Api.GetDocument();
let myStyle = doc.CreateStyle("My document style");
let paraPr = myStyle.GetParaPr();
paraPr.SetRightBorder("single", 24, 0, 255, 111, 61);
let paragraph = doc.GetElement(0);
paragraph.SetStyle(myStyle);
paragraph.AddText("This is the first paragraph. ");
paragraph.AddText("The paragraph properties styled above set a border at its right side.");