public landRow AddlandRow(string idland, string description, string cu, System.DateTime ct, string lu, System.DateTime lt) { landRow rowlandRow = ((landRow)(this.NewRow())); rowlandRow.ItemArray = new object[] { idland, description, cu, ct, lu, lt }; this.Rows.Add(rowlandRow); return(rowlandRow); }
public landRowChangeEvent(landRow row, System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemovelandRow(landRow row) { this.Rows.Remove(row); }
public void AddlandRow(landRow row) { this.Rows.Add(row); }