"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 dashed lines of a rectangle.

Example

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

main()
{
  Border1.dashBackCol = "red";
}
main() 
{ 
  setValue("Border1", "dashBackCol", "yellow");
}
Abbildung 1. Rectangle and a Dashed Line

Assignment

Rectangle, Frame