(value?: D)
| 156 | */ |
| 157 | public value(value: D): this; |
| 158 | public value(value?: D): any { |
| 159 | if (value == null) { |
| 160 | return this._value; |
| 161 | } |
| 162 | this._value = value; |
| 163 | this._mode = PropertyMode.VALUE; |
| 164 | this._syncPixelPositionAndValue(); |
| 165 | this.render(); |
| 166 | return this; |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Gets the position of the guide line in pixel-space. |
no test coverage detected