The FillColor property returns or sets the symbol fill color as an RGB value. Returns a MVColor.
Syntax
object.FillColor
object.FillColor = Color
Parameter |
Type |
Description |
Color |
required; color, see remarks |
Remarks
Use the enumeration [ mvColorRed], RGB value [RGB(255,0,0)], or number [255] to set a color.
Example 1
This example changes the symbol fill color to green.
MarkerFormat.FillColor = mvColorGreen
Example 2
This example returns the symbol fill color.
Debug.Print MarkerFormat.FillColor
Used by: MarkerFormat object