1 | <?php |
||
11 | class BaseStrokableElement extends BaseElement { |
||
12 | |||
13 | protected $strokeColor; |
||
14 | protected $strokeOpacity; |
||
15 | protected $strokeWeight; |
||
16 | |||
17 | public function getJSONObject( string $defText = '', string $defTitle = '' ): array { |
||
26 | |||
27 | public function hasStrokeColor() { |
||
30 | |||
31 | public function getStrokeColor() { |
||
34 | |||
35 | public function setStrokeColor( $strokeColor ) { |
||
38 | |||
39 | public function hasStrokeOpacity() { |
||
42 | |||
43 | public function getStrokeOpacity() { |
||
46 | |||
47 | public function setStrokeOpacity( $strokeOpacity ) { |
||
50 | |||
51 | public function hasStrokeWeight() { |
||
54 | |||
55 | public function getStrokeWeight() { |
||
58 | |||
59 | public function setStrokeWeight( $strokeWeight ) { |
||
62 | |||
63 | } |
||
64 |
This method has been deprecated.