Inheritance: System.ComponentModel.Component, IDisposable
Example #1
0
 public RebarBand Add( RebarBand band ) {
     List.Add( band );
     band.Bands = this;
     return band;
 }
Example #2
0
 public int IndexOf( RebarBand band ) {
     return List.IndexOf( band );
 }
Example #3
0
 public void Remove( RebarBand band ) {
     band.DestroyBand();
     List.Remove( band );
     band.Dispose();
 }