Exemplo n.º 1
0
 public CatalogRowChangeEvent(CatalogRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Exemplo n.º 2
0
 public void AddCatalogRow(CatalogRow row)
 {
     this.Rows.Add(row);
 }
Exemplo n.º 3
0
 public void RemoveCatalogRow(CatalogRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 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;
 }