Beispiel #1
0
            public NotesTableRow AddNotesTableRow(short C, short CSharp, short D, short DSharp, short E, short F, short FSharp, short G, short GSharp, short A, short ASharp, short B, short Octave)
            {
                NotesTableRow rowNotesTableRow = ((NotesTableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    C,
                    CSharp,
                    D,
                    DSharp,
                    E,
                    F,
                    FSharp,
                    G,
                    GSharp,
                    A,
                    ASharp,
                    B,
                    Octave
                };
                rowNotesTableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowNotesTableRow);
                return(rowNotesTableRow);
            }
Beispiel #2
0
 public NotesTableRowChangeEvent(NotesTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public void RemoveNotesTableRow(NotesTableRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public void AddNotesTableRow(NotesTableRow row)
 {
     this.Rows.Add(row);
 }
 public NotesTableRowChangeEvent(NotesTableRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveNotesTableRow(NotesTableRow row) {
     this.Rows.Remove(row);
 }
 public void AddNotesTableRow(NotesTableRow row) {
     this.Rows.Add(row);
 }