public void AddSpectrumTableRow(SpectrumTableRow row) {
     this.Rows.Add(row);
 }
 public void RemoveSpectrumTableRow(SpectrumTableRow row) {
     this.Rows.Remove(row);
 }
 public SpectrumTableRowChangeEvent(SpectrumTableRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }