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