* Patches the value of a control. * * This function is functionally the same as FormControl#setValue setValue at this level. * It exists for symmetry with FormGroup#patchValue patchValue on `FormGroups` and * `FormArrays`, where it does behave differently. * * @see
(
value: TValue,
options?: {
onlySelf?: boolean;
emitEvent?: boolean;
emitModelToViewChange?: boolean;
emitViewToModelChange?: boolean;
},
)
| 257 | * @see {@link FormControl#setValue} for options |
| 258 | */ |
| 259 | patchValue( |
| 260 | value: TValue, |
| 261 | options?: { |
| 262 | onlySelf?: boolean; |
nothing calls this directly
no test coverage detected