É isso que você está tentando fazer?
Para ocultar o estilo de tabela, mas torná-lo visível quando usado
Sub Hide_Table_Style()
With ActiveDocument.Styles(Word.wdStyleTableLightShading)
.Visibility = True ' Yes, True.
.UnhideWhenUsed = True
End With
End Sub
Ou simplesmente ocultar o estilo de tabela
Sub Hide_Table_Style()
With ActiveDocument.Styles(Word.wdStyleTableLightShading)
.Visibility = True ' Yes, True.
.UnhideWhenUsed = False
End With
End Sub