Function BindStyleToNumberAppendPx

  • 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.)

    Returns ((target, context) => any)

    DecoratorCallback

      • (target, context): any
      • Parameters

        • target: undefined
        • context: ClassFieldDecoratorContext<WebzComponent, number>

        Returns any

    Description

    Decorator to bind a specific style to a number, and append a 'px' to the value

    Export

    Example

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

Generated using TypeDoc