LineColor Property

 

The LineColor property returns or sets the symbol line color as an RGB value. Returns a MVColor.

 

Syntax

object.LineColor

object.LineColor = Color

 

Parameter

Type

Description

Color

MVColor

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 returns the symbol line color.

 

Debug.Print MarkerFormat.LineColor

 

Example 2

This example sets the symbol line color to green.

 

MarkerFormat.LineColor = mvColorGreen

 

Used by: MarkerFormat object