コード例 #1
0
 public void Remove(TabPage tapPage)
 {
     this.List.Remove(tapPage);
 }
コード例 #2
0
 public void Insert(int index, TabPage tapPage)
 {
     this.List.Insert(index, tapPage);
 }
コード例 #3
0
 public bool Contains(TabPage tapPage)
 {
     return this.List.Contains(tapPage);
 }
コード例 #4
0
 public void CopyTo(TabPage[] array, int index)
 {
     List.CopyTo(array, index);
 }
コード例 #5
0
 public void Add(TabPage tapPage)
 {
     this.List.Add(tapPage);
 }