Esempio n. 1
0
            public AnalysisTableRow AddAnalysisTableRow(double Price, double Volatility, System.DateTime EndDate, double Profit, double ProfitPrc, double Delta, double Gamma, double Theta, double Vega)
            {
                AnalysisTableRow rowAnalysisTableRow = ((AnalysisTableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    null,
                    Price,
                    Volatility,
                    EndDate,
                    Profit,
                    ProfitPrc,
                    Delta,
                    Gamma,
                    Theta,
                    Vega
                };
                rowAnalysisTableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowAnalysisTableRow);
                return(rowAnalysisTableRow);
            }
Esempio n. 2
0
 public AnalysisTableRowChangeEvent(AnalysisTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemoveAnalysisTableRow(AnalysisTableRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddAnalysisTableRow(AnalysisTableRow row)
 {
     this.Rows.Add(row);
 }