export enum PropertyBindingType
export enum PropertyBindingType
exported from angular2/compiler defined in angular2/src/compiler/template_ast.ts (line 164)
Enumeration of types of property bindings.
Members
Property
Property
A normal binding to a property (e.g. [property]="expression"
).
Attribute
Attribute
A binding to an element attribute (e.g. [attr.name]="expression"
).
Class
Class
A binding to a CSS class (e.g. [class.name]="condition"
).
Style
Style
A binding to a style rule (e.g. [style.rule]="expression"
).