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