"dashBackCol"

Defines or returns the background color of a dashed line.

Synopsis

setValue(string shape, "dashBackCol", string color);

getValue(string shape, "dashBackCol", string color);

shape.dashBackCol(string color);

Parameters

Parameter Description
shape Name of the object
color Color string for the dashed line background color

Description

This attribute defines or returns the color of the background for the dashed lines of a rectangle.

Example

The following example sets the background color to red respectively to yellow with setValue().

main() 
{ 
  Polyline1.dashBackCol = "red"; 
}
main() 
{ 
  setValue("Polyline1", "dashBackCol", "yellow"); 
}

Assignment

Polyline