I have the following code that colorfills the first column in a table.
With Selection.Shading
.Texture = wdTextureNone
.ForegroundPatternColorIndex = wdAuto
.BackgroundPatternColorIndex = wdTurquoise
End With
Howvever I want the following RGB colour applied (RGB = RGB(242, 239, 135) rather than the constant that is supplied with the .BackgroundPatternColorIndex method.
How would I go about doing this?
With Selection.Shading
.Texture = wdTextureNone
.ForegroundPatternColorIndex = wdAuto
.BackgroundPatternColorIndex = wdTurquoise
End With
Howvever I want the following RGB colour applied (RGB = RGB(242, 239, 135) rather than the constant that is supplied with the .BackgroundPatternColorIndex method.
How would I go about doing this?