Creates a change event object that should be emitted by the select.
(value: any)
| 285 | |
| 286 | /** Creates a change event object that should be emitted by the select. */ |
| 287 | private _getChangeEvent(value: any) { |
| 288 | return new MatSelectChange(this, value); |
| 289 | } |
| 290 | |
| 291 | /** Factory function used to create a scroll strategy for this select. */ |
| 292 | private _scrollStrategyFactory = inject(MAT_SELECT_SCROLL_STRATEGY); |