Focuses the select element.
(options?: FocusOptions)
| 1325 | |
| 1326 | /** Focuses the select element. */ |
| 1327 | focus(options?: FocusOptions): void { |
| 1328 | this._elementRef.nativeElement.focus(options); |
| 1329 | } |
| 1330 | |
| 1331 | /** Gets the aria-labelledby for the select panel. */ |
| 1332 | _getPanelAriaLabelledby(): string | null { |
no test coverage detected