/// <summary> /// Initializes a new instance of the <see cref="TabEventArgs"/> class. /// </summary> /// <param name="tab">A <see cref="Toolbox.Tab">Tab</see> object on which an event is raised.</param> public TabEventArgs(Toolbox.Tab tab) { if (tab == null) { throw new ArgumentNullException("tab"); } this._tab = tab; }