BorderColor

<< Click to Display Table of Contents >>

 

BorderColor

Color This property determines a border color to apply to a Scale object. With this property, users can apply a default color or customize that color by editing it. Default value of this property is white (RGB(255, 255, 255)). The next script contains an example of using this property.

Sub Scale1_Click()
  BorderColor = RGB (255, 0, 0)
End Sub

Was this page useful?