* Focuses/activates the editor. This will set this editor as the activeEditor in the tinymce collection * it will also place DOM focus inside the editor. * * @method focus * @param {Boolean} skipFocus Skip DOM focus. Just set is as the active editor.
(skipFocus?: boolean)
| 402 | * @param {Boolean} skipFocus Skip DOM focus. Just set is as the active editor. |
| 403 | */ |
| 404 | public focus(skipFocus?: boolean): void { |
| 405 | this.execCommand('mceFocus', false, skipFocus); |
| 406 | } |
| 407 | |
| 408 | /** |
| 409 | * Returns true/false if the editor has real keyboard focus. |