Beispiel #1
0
		/// <summary>
		/// Constructor
		/// </summary>
		/// <param name="tabOptions">Tab options object</param>
		public CookieOptions(jTab.Options tabOptions)
		 : base()
		{
			this._TabOptions = tabOptions;
			this.Options = new Utilities.jCookie.Options(null);
		}
Beispiel #2
0
		/// <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);
		}