<div class="my-2" *ngSwitchCase="'BPFDateTimeElement'">
<core-date
[control]="form.get(section.objectID).get(rowElement.objectID)"
[element]="rowElement"
></core-date>
</div>
<div class="my-2" *ngSwitchCase="'BPFBooleanElement'">
<core-boolean
[control]="form.get(section.objectID).get(rowElement.objectID)"
[element]="rowElement"
></core-boolean>
</div>
<div class="my-2" *ngSwitchCase="'BPFEntryElement'">
<core-input
[control]="form.get(section.objectID).get(rowElement.objectID)"
[element]="rowElement"
></core-input>
</div>
<div class="my-2" *ngSwitchCase="'BPFTextViewElement'">
<core-textarea
[control]="form.get(section.objectID).get(rowElement.objectID)"
[element]="rowElement"
></core-textarea>
</div>
<div class="my-2" *ngSwitchCase="'BPFPicklistElement'">
<core-pick-list
[control]="form.get(section.objectID).get(rowElement.objectID)"
[element]="rowElement"
></core-pick-list>