Visio.Highlight interface
表示添加到形状的突出显示数据。
注解
[ API 集: 1.1 ]
属性
color | 指定突出显示数据的颜色的字符串。 格式必须为“#RRGGBB”,其中每个字母表示介于 0 到 F 之间的十六进制数字,RR 是介于 0 到 0xFF (255) 之间的红色值,GG 是介于 0 到 0xFF (255) 之间的绿色值,BB 是介于 0 到 0xFF (255) 之间的蓝色值。 |
width | 指定突出显示数据的笔划宽度(以像素为单位)的正整数。 |
属性详细信息
color
指定突出显示数据的颜色的字符串。 格式必须为“#RRGGBB”,其中每个字母表示介于 0 到 F 之间的十六进制数字,RR 是介于 0 到 0xFF (255) 之间的红色值,GG 是介于 0 到 0xFF (255) 之间的绿色值,BB 是介于 0 到 0xFF (255) 之间的蓝色值。
color: string;
属性值
string
注解
[ API 集: 1.1 ]
示例
Visio.run(session, function (ctx) {
const activePage = ctx.document.getActivePage();
const shape = activePage.shapes.getItem(0);
shape.view.highlight.color = "#E7E7E7";
shape.view.highlight.width = 100;
return ctx.sync();
}).catch(function(error) {
console.log("Error: " + error);
if (error instanceof OfficeExtension.Error) {
console.log("Debug info: " + JSON.stringify(error.debugInfo));
}
});