Outlook) (AutoFormatRule.Enabled 属性
返回或设置一个 布尔 值,该值指示是否启用 AutoFormatRule 对象所表示的格式设置规则。 读/写。
语法
表达式。启用
表达 一个代表 AutoFormatRule 对象的变量。
示例
以下Visual Basic for Applications (VBA) 示例枚举当前 TableView 对象的 AutoFormatRules 集合,禁用集合包含的任何自定义格式规则。
Private Sub DisableCustomAutoFormatRules()
Dim objTableView As TableView
Dim objRule As AutoFormatRule
' Check if the current view is a table view.
If Application.ActiveExplorer.CurrentView.ViewType = olTableView Then
' Obtain a TableView object reference to the current view.
Set objView = Application.ActiveExplorer.CurrentView
' Enumerate the AutoFormatRules collection for
' the table view, disabling any custom formatting
' rule defined for the view.
For Each objRule In objView.AutoFormatRules
If Not objRule.Standard Then
objRule.Enabled = False
End If
Next
' Save and apply the table view.
objView.Save
objView.Apply
End If
End Sub
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。