シート見出しの色はTab.Colorプロパティで設定します。
実行プログラム
1 2 3 4 5 |
Sub Sample6_10_1() Worksheets("Sheet3").Tab.Color = RGB(0, 0, 255) End Sub |
色なしに設定する
実行プログラム
1 2 3 4 5 |
Sub Sample6_10_2() Worksheets("Sheet3").Tab.ColorIndex = xlColorIndexNone End Sub |