public void AddtextRow(textRow row) {
     this.Rows.Add(row);
 }
 public word1Row Addword1Row(int doa, int faghare, textRow parenttextRowBytextword1, string word, string root, int type) {
     word1Row rowword1Row = ((word1Row)(this.NewRow()));
     rowword1Row.ItemArray = new object[] {
             null,
             doa,
             faghare,
             parenttextRowBytextword1[0],
             word,
             root,
             type};
     this.Rows.Add(rowword1Row);
     return rowword1Row;
 }
 public textRowChangeEvent(textRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemovetextRow(textRow row) {
     this.Rows.Remove(row);
 }