(v?: number)
| 347 | |
| 348 | // set instance state or get state |
| 349 | status(v?: number) { |
| 350 | if (v != null) this.instanceStatus = v; |
| 351 | return this.instanceStatus; |
| 352 | } |
| 353 | |
| 354 | // function that must be executed after the instance starts |
| 355 | // Trigger the open event and bind the data and exit events, etc. |