Example #1
0
 public CatalogRowChangeEvent(CatalogRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Example #2
0
 public void AddCatalogRow(CatalogRow row)
 {
     this.Rows.Add(row);
 }
Example #3
0
 public void RemoveCatalogRow(CatalogRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public ContentsRow AddContentsRow(CatalogRow parentCatalogRowByCatalog_Contents)
 {
     ContentsRow rowContentsRow = ((ContentsRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             null};
     if ((parentCatalogRowByCatalog_Contents != null)) {
         columnValuesArray[1] = parentCatalogRowByCatalog_Contents[2];
     }
     rowContentsRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowContentsRow);
     return rowContentsRow;
 }