I'm searching how to get the content inside my component call. Is there a way to get it?
<my-component>get what is here inside in my-component</my-component>
<my-select [list]="LMObjects" [multiple]="true">{{MyObject.MyName}}</my-select>
and it would generate
<mat-form-field>
<mat-select multiple="@InputMultiple">
<mat-option *ngFor="let obj of ListObj" [value]="obj.id">
{{@InputChildBlock}} // copy of block inside balises
</mat-option>
</mat-select>
</mat-form-field>