Programatically set the size of the editor (overriding the applicable CSS rules). width and height height can be either numbers(interpreted as pixels) or CSS units ("100%", for example). You can pass null for either of them to indicate that that dimension should not be changed.
(width: any, height: any)
| 214 | width and height height can be either numbers(interpreted as pixels) or CSS units ("100%", for example). |
| 215 | You can pass null for either of them to indicate that that dimension should not be changed. */ |
| 216 | setSize(width: any, height: any): void; |
| 217 | |
| 218 | /** Scroll the editor to a given(pixel) position.Both arguments may be left as null or undefined to have no effect. */ |
| 219 | scrollTo(x: number, y: number): void; |
no outgoing calls
no test coverage detected