如果应显示
“插入选项”按钮,则该属性值为
True。
Boolean 类型,可读写。
语法
表达式.DisplayInsertOptions
表达式 一个代表 Application 对象的变量。
示例
在本示例中,ET 将显示“插入选项”按钮的状态通知用户。
示例代码 |
function SettingToolTip() {
// Notify the user of the ToolTip status.
if(Application.DisplayInsertOptions == true) {
MsgBox("The ability to display the Insert Options button is on.")
}
else {
MsgBox("The ability to display the Insert Options button is off.")
}
}
|