/// <summary> /// Constructor /// </summary> /// <param name="toolTipOptions">ToolTip options object</param> /// <param name="caller"> /// Specifies the type of caller using the animation. For instance it's common for the animation properties /// to be used by both "show" and "hide" methods on a widget. We need to differentiate between the two /// when rendering the script output. /// </param> public AnimationOptions(jToolTip.Options toolTipOptions, string caller) : base() { this._ToolTipOptions = toolTipOptions; this.Options = new Utilities.jAnimation.Options(null, caller); }
/// <summary> /// Constructor /// </summary> /// <param name="tabOptions">Tab options object</param> /// <param name="caller"> /// Specifies the type of caller using the animation. For instance it's common for the animation properties /// to be used by both "show" and "hide" methods on a widget. We need to differentiate between the two /// when rendering the script output. /// </param> public AnimationOptions(jTab.Options tabOptions, string caller) : base() { this._TabOptions = tabOptions; this.Options = new Utilities.jAnimation.Options(null, caller); }