语法
表达式.IconLabel
表达式 返回 OLEFormat 对象的表达式。
示例
本示例更改选定内容中第一个图形的图标下面的文字。
if(Selection.ShapeRange.Count >= 1){ let olefTemp = Selection.ShapeRange.Item(1).OLEFormat olefTemp.DisplayAsIcon = true olefTemp.IconLabel = "My Icon" }