Ejemplo n.º 1
0
 /// <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;
 }
Ejemplo n.º 2
0
 /// <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;
 }