DecoratorCallback
Decorator to bind a specific style string property to an element
//This will set the background color of the div with id myDiv to the value in backgroundColor
@BindStyle("myDiv", "backgroundColor")
public backgroundColor: string = "red";
DecoratorCallback
Decorator to bind a specific style non-string property to an element
//This will set the background color of the div with id myDiv to the red if the property is true, or blue if it is false
@BindStyle("myDiv", "backgroundColor",(value: boolean) => value ? "red" : "blue")
public backgroundColor: boolean=true;
Generated using TypeDoc
the element to bind the property to