Navigation
Synopsis Defines the line color.
Function
  1. FProperty lineColor(Color c)
  2. FProperty lineColor(str cname)
Description Sets the color of lines and figure boundaries:
  1. Set color to c.
  2. Set color to color with name cname.
Also see ColorModel
Examples
b1 = box([size(50), lineColor("Red")]);
b2 = box([size(50), lineColor("Blue")]);
b3 = box([size(50), lineColor("Green")]);
b4 = box([size(50), lineColor("Purple")]);
boxes = [b1, b2, b3, b4];
render(hcat(boxes));
gives: h1
Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.