예제 #1
0
            public OpusRow AddOpusRow(string Last, string Opus)
            {
                OpusRow rowOpusRow = ((OpusRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Last,
                    Opus
                };
                rowOpusRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowOpusRow);
                return(rowOpusRow);
            }
예제 #2
0
 public OpusRowChangeEvent(OpusRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveOpusRow(OpusRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddOpusRow(OpusRow row)
 {
     this.Rows.Add(row);
 }