* Private method to call a drawing method * @param {number} method name - method name * @param {any} params - parameters to the method
(method:string, params:any)
| 33 | * @param {any} params - parameters to the method |
| 34 | */ |
| 35 | private _callDrawMethod(method:string, params:any):void { |
| 36 | __pchannel('Runtime:CallMethod', { |
| 37 | 'id': this._parent.getId(), |
| 38 | 'context': 'graphics', |
| 39 | 'method': method, |
| 40 | 'params': params |
| 41 | }); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Line to point |
no test coverage detected