public tbExportadoresColunasRow AddtbExportadoresColunasRow(int nIdExportador, int nIdColuna, string strNome, int nTamanho)
            {
                tbExportadoresColunasRow rowtbExportadoresColunasRow = ((tbExportadoresColunasRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    nIdExportador,
                    nIdColuna,
                    strNome,
                    nTamanho
                };
                rowtbExportadoresColunasRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowtbExportadoresColunasRow);
                return(rowtbExportadoresColunasRow);
            }
 public tbExportadoresColunasRowChangeEvent(tbExportadoresColunasRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovetbExportadoresColunasRow(tbExportadoresColunasRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddtbExportadoresColunasRow(tbExportadoresColunasRow row)
 {
     this.Rows.Add(row);
 }