* Sets the listbox's value. * @param value The new value of the listbox * @docs-private
(value: readonly T[])
| 610 | * @docs-private |
| 611 | */ |
| 612 | writeValue(value: readonly T[]): void { |
| 613 | this._setSelection(value); |
| 614 | this._verifyOptionValues(); |
| 615 | } |
| 616 | |
| 617 | /** |
| 618 | * Sets the disabled state of the listbox. |
no test coverage detected