Function BindVisibleToBoolean

  • Type Parameters

    Parameters

    • id: string

      the element to bind the property to

    Returns ((target, context) => any)

    DecoratorCallback

      • (target, context): any
      • Parameters

        Returns any

    Description

    Decorator to bind the visibility of an element to a boolean

    Export

    Example

    //This will hide the div with id myDiv1 if the visible property is false
    @BindVisibleToBoolean("myDiv1")
    public visible: boolean = true;

Generated using TypeDoc