Пример #1
0
            public PrintGameRow AddPrintGameRow(string white, string black, string notations, string gametype, string date)
            {
                PrintGameRow rowPrintGameRow = ((PrintGameRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    white,
                    black,
                    notations,
                    gametype,
                    date
                };
                rowPrintGameRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowPrintGameRow);
                return(rowPrintGameRow);
            }
 public PrintGameRowChangeEvent(PrintGameRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Пример #3
0
 public void RemovePrintGameRow(PrintGameRow row)
 {
     this.Rows.Remove(row);
 }
Пример #4
0
 public void AddPrintGameRow(PrintGameRow row)
 {
     this.Rows.Add(row);
 }