我创建了一个新的自定义按钮,将灵敏度设置为机密。
我希望按钮能够执行以下操作:
Sub setConfidential()
ActiveInspector.CurrentItem.Sensitivity = olConfidential
End Sub
答案 0 :(得分:0)
Re:每次按下按钮时切换设置(设置和取消设置机密标签)。
Sub ToggleSensitivity()
if ActiveInspector.CurrentItem.Sensitivity = olConfidential then
ActiveInspector.CurrentItem.Sensitivity = olNormal
else
ActiveInspector.CurrentItem.Sensitivity = olConfidential
end if
End Sub