public void RemoveEtiquetaRow(EtiquetaRow row) {
     this.Rows.Remove(row);
 }
 public EtiquetaRowChangeEvent(EtiquetaRow row, DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddEtiquetaRow(EtiquetaRow row) {
     this.Rows.Add(row);
 }