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