Beispiel #1
0
            public EventActorRow AddEventActorRow(string EventActorName)
            {
                EventActorRow rowEventActorRow = ((EventActorRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    null,
                    EventActorName
                };
                rowEventActorRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowEventActorRow);
                return(rowEventActorRow);
            }
Beispiel #2
0
 public EventActorRowChangeEvent(EventActorRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public void RemoveEventActorRow(EventActorRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public void AddEventActorRow(EventActorRow row)
 {
     this.Rows.Add(row);
 }