예제 #1
0
            public ActorEventRow AddActorEventRow(string EventActorName, int EventID)
            {
                ActorEventRow rowActorEventRow = ((ActorEventRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    null,
                    EventActorName,
                    EventID,
                    null
                };
                rowActorEventRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowActorEventRow);
                return(rowActorEventRow);
            }
예제 #2
0
 public ActorEventRowChangeEvent(ActorEventRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveActorEventRow(ActorEventRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddActorEventRow(ActorEventRow row)
 {
     this.Rows.Add(row);
 }