Function BindStyleToNumber

  • Type Parameters

    • K extends keyof CSSStyleDeclaration
    • This extends WebzComponent
    • Value extends number

    Parameters

    • id: string

      the element to bind the property to

    • style: K

      the style to bind (i.e. background-color, left, top, etc.)

    • append: string = ""

    Returns ((target, context) => any)

    DecoratorCallback

      • (target, context): any
      • Parameters

        Returns any

    Description

    Decorator to bind a specific style to a number, and optionally append a string to the value

    Param

    optional string to append to the number before setting the value

    Export

    Example

    //This will set the width of the div to the number in width
    @BindStyleToNumber("myDiv", "width","%")
    public width: number = 100;

Generated using TypeDoc