Example #1
0
 public audioRowChangeEvent(audioRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Example #2
0
 public void RemoveaudioRow(audioRow row) {
     this.Rows.Remove(row);
 }
Example #3
0
 public acodecRow AddacodecRow(string name, string fcc, string bitrate, audioRow parentaudioRowByaudio_acodec) {
     acodecRow rowacodecRow = ((acodecRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             name,
             fcc,
             bitrate,
             null};
     if ((parentaudioRowByaudio_acodec != null)) {
         columnValuesArray[3] = parentaudioRowByaudio_acodec[3];
     }
     rowacodecRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowacodecRow);
     return rowacodecRow;
 }
Example #4
0
 public void AddaudioRow(audioRow row) {
     this.Rows.Add(row);
 }