* The aggregate value of the array, including any disabled controls. * * Reports all values regardless of disabled status.
()
| 456 | * Reports all values regardless of disabled status. |
| 457 | */ |
| 458 | override getRawValue(): ɵFormArrayRawValue<TControl> { |
| 459 | return this.controls.map((control: AbstractControl) => control.getRawValue()); |
| 460 | } |
| 461 | |
| 462 | /** |
| 463 | * Remove all controls in the `FormArray`. |
nothing calls this directly
no test coverage detected