Compartir a través de


Propiedad AutoFormatRule.Enabled (Outlook)

Devuelve o establece un valor booleano que indica si está habilitada la regla de formato representada por el objeto AutoFormatRule. Lectura y escritura.

Sintaxis

expresión. Habilitado

Expresión Variable que representa un objeto AutoFormatRule .

Ejemplo:

El siguiente de Visual Basic para Aplicaciones (VBA) se enumera la colección AutoFormatRules para el objeto TableView actual, deshabilita cualquier regla de formato personalizada contenida en la colección.

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

Consulte también

Objeto AutoFormatRule

Soporte técnico y comentarios

¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.