public CalendarsRow AddCalendarsRow(string ID, string URL, string Name, string Description, bool IsParent) { CalendarsRow rowCalendarsRow = ((CalendarsRow)(this.NewRow())); object[] columnValuesArray = new object[] { ID, URL, Name, Description, IsParent }; rowCalendarsRow.ItemArray = columnValuesArray; this.Rows.Add(rowCalendarsRow); return(rowCalendarsRow); }
public CalendarsRowChangeEvent(CalendarsRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveCalendarsRow(CalendarsRow row) { this.Rows.Remove(row); }
public void AddCalendarsRow(CalendarsRow row) { this.Rows.Add(row); }