VBA-Defined Constants: vbBlue : Color Constant « Application « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Application
- Color Constant
VBA-Defined Constants: vbBlue
Sub obj3()
Dim myObject As Range
Set myObject = Range("A1:B10")
myObject.Interior.Color = vbBlue
End Sub
Related examples in the same category