Function BindCSSClass

  • Type Parameters

    Parameters

    • id: string

      the element to bind the property to

    • Optional transform: ((this, value) => string)

      an optional function to transform the value to a string before it is set on the element

        • (this, value): string
        • Parameters

          Returns string

    Returns ((target, context) => any)

    DecoratorCallback

      • (target, context): any
      • Parameters

        • target: any
        • context: ClassFieldDecoratorContext<This, Value>

        Returns any

    Description

    Decorator to bind the className property to an element.

    Export

    Example

    //This will set the CSS class of the div with id myDiv to the value in cssClass
    @BindCSSClass("myDiv")
    public cssClass: string = "myCSSClass";
  • Type Parameters

    Parameters

    • id: string

      the element to bind the property to

    • transform: ((this, value) => string)

      a function to transform the value to a string before it is set on the element

        • (this, value): string
        • Parameters

          Returns string

    Returns ((target, context) => any)

    DecoratorCallback

      • (target, context): any
      • Parameters

        • target: any
        • context: ClassFieldDecoratorContext<This, Value>

        Returns any

    Description

    Decorator to bind the className property to an element.

    Export

    Example

    //This will set the CSS class of the div with id myDiv to the value in cssClass
    @BindCSSClass("myDiv")
    public cssClass: string = "myCSSClass";

Generated using TypeDoc