TableStyle.Condition メソッド (Word)
テーブルの一部に対する特殊なスタイルの書式設定を表す ConditionalStyle オブジェクトを返します。
構文
式。 Condition
( _ConditionCode_
)
式 が必要です。 'TableStyle' オブジェクトを表す変数。
パラメーター
名前 | 必須 / オプション | データ型 | 説明 |
---|---|---|---|
ConditionCode | 必須 | WdConditionCode | 書式設定を適用するテーブルの領域。 |
例
次の使用例は、作業中の文書の最初の表を選択し、奇数列に 20% の網かけを設定します。
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
関連項目
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。