TableStyle.Condition (Word)

Gibt ein ConditionalStyle -Objekt zurück, das spezielle Formatvorlagen für einen Teil einer Tabelle darstellt.

Condition (ConditionCode)

ConditionCode: Der Bereich der Tabelle, auf die die Formatierung angewendet werden soll.


Sub TableStylesTest() 
 With ActiveDocument 
 
 'Select the table to which the conditional 
 'formatting will apply 
 .Tables(1).Select 
 
 'Specify the conditional formatting 
 .Styles("Table Grid").Table _ 
 .Condition(wdOddColumnBanding).Shading _ 
 .BackgroundPatternColor = wdColorGray20 
 End With 
End Sub