public void RemovehorizontalRow(horizontalRow row) {
     this.Rows.Remove(row);
 }
 public horizontalRowChangeEvent(horizontalRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddhorizontalRow(horizontalRow row) {
     this.Rows.Add(row);
 }