Skip to content
Snippets Groups Projects
checkbox.component.ts 1018 B
Newer Older
import { Component } from '@angular/core';
import { FormElementComponent } from '../canvas-element-component.directive';

@Component({
  selector: 'app-checkbox',
  template: `
      <mat-checkbox class="example-margin"
                    [formControl]="formControl"
rhenck's avatar
rhenck committed
                    [style.width.px]="elementModel.width"
                    [style.height.px]="elementModel.height"
                    [style.background-color]="elementModel.backgroundColor"
                    [style.color]="elementModel.fontColor"
                    [style.font-family]="elementModel.font"
                    [style.font-size.px]="elementModel.fontSize"
                    [style.font-weight]="elementModel.bold ? 'bold' : ''"
                    [style.font-style]="elementModel.italic ? 'italic' : ''"
                    [style.text-decoration]="elementModel.underline ? 'underline' : ''">
          {{$any(elementModel).label}}
      </mat-checkbox>
export class CheckboxComponent extends FormElementComponent { }