/// <summary>
 /// Determines whether [contains] [the specified tab].
 /// </summary>
 /// <param name="Tab">The tab.</param>
 /// <returns>
 ///   <c>true</c> if [contains] [the specified tab]; otherwise, <c>false</c>.
 /// </returns>
 public bool Contains(AccordionPane Pane)
 {
     return(List.Contains(Pane));
 }
 /// <summary>
 /// Indexes the of.
 /// </summary>
 /// <param name="item">The item.</param>
 /// <returns></returns>
 public int IndexOf(AccordionPane item)
 {
     return(List.IndexOf(item));
 }
 /// <summary>
 /// Adds the specified tab.
 /// </summary>
 /// <param name="Tab">The tab.</param>
 public void Add(AccordionPane Pane)
 {
     List.Add(Pane);
     Parent.Controls.Add(Pane);
 }
 /// <summary>
 /// Removes the specified tab.
 /// </summary>
 /// <param name="Tab">The tab.</param>
 public void Remove(AccordionPane Pane)
 {
     List.Remove(Pane);
 }
 /// <summary>
 /// Indexes the of.
 /// </summary>
 /// <param name="item">The item.</param>
 /// <returns></returns>
 public int IndexOf(AccordionPane item)
 {
     return List.IndexOf(item);
 }
 /// <summary>
 /// Copies to.
 /// </summary>
 /// <param name="array">The array.</param>
 /// <param name="index">The index.</param>
 public void CopyTo(AccordionPane[] array, int index)
 {
     List.CopyTo(array, index);
 }
 /// <summary>
 /// Determines whether [contains] [the specified tab].
 /// </summary>
 /// <param name="Tab">The tab.</param>
 /// <returns>
 ///   <c>true</c> if [contains] [the specified tab]; otherwise, <c>false</c>.
 /// </returns>
 public bool Contains(AccordionPane Pane)
 {
     return List.Contains(Pane);
 }
 /// <summary>
 /// Adds the specified tab.
 /// </summary>
 /// <param name="Tab">The tab.</param>
 public void Add(AccordionPane Pane)
 {
     List.Add(Pane);
     Parent.Controls.Add(Pane);
 }
 /// <summary>
 /// Removes the specified tab.
 /// </summary>
 /// <param name="Tab">The tab.</param>
 public void Remove(AccordionPane Pane)
 {
     List.Remove(Pane);
 }