Gui\Components\Shape::setBorderColor PHP Method

setBorderColor() public method

Set the border Color
public setBorderColor ( string $color ) : self
$color string Color '#123456'
return self
    public function setBorderColor($color)
    {
        $this->set('pen.color', Color::toLazarus($color));
        return $this;
    }