sesaparcours
    Preparing search index...
    • adds to the top right corner of the figure two zoom buttons syntaxes addTimerButton(callBack, k) and addTimerButton(callBack, k, x, y) are allowed too where k is the increase ratio (k > 1) and callBack the used function

      Parameters

      • options: {
            callBack: (...params: any[]) => any;
            k: string;
            tag?: string;
            x?: string | number | CValDyn;
            y?: string | number | CValDyn;
        }
        • callBack: (...params: any[]) => any

          function to be called by the timer

        • k: string

          Frequency of the timer to be set (in seconds)

        • Optionaltag?: string

          Tag to be applied on the created text display (if present) returns {CCommentaire}

        • Optionalx?: string | number | CValDyn

          x coordinate of the top button zoom in svg coordinates

        • Optionaly?: string | number | CValDyn

          y coordinate of the top button zoom in svg coordinates

      Returns void