public RowAddingEventArgs(int rowIndex)
 {
     this.m_nRowIndex = rowIndex;
     this.m_row = null;
 }
Exemple #2
0
 public CellEnteredMainEventArgs(Resco.Controls.AdvancedList.Cell cell, int iCellIndex, Resco.Controls.AdvancedList.Row r)
 {
     this.m_cell       = cell;
     this.m_iCellIndex = iCellIndex;
     this.m_row        = r;
 }
 public CellEnteredEventArgs(Resco.Controls.AdvancedList.Cell c, Resco.Controls.AdvancedList.Row r, object data)
 {
     this.m_cell = c;
     this.m_row  = r;
     this.m_data = data;
 }
Exemple #4
0
 public RowEnteredEventArgs(Resco.Controls.AdvancedList.Row r, int iRowIndex)
 {
     this.m_row       = r;
     this.m_iRowIndex = iRowIndex;
 }
 public CellEnteredMainEventArgs(Resco.Controls.AdvancedList.Cell cell, int iCellIndex, Resco.Controls.AdvancedList.Row r)
 {
     this.m_cell = cell;
     this.m_iCellIndex = iCellIndex;
     this.m_row = r;
 }
Exemple #6
0
 public RowAddingEventArgs(int rowIndex)
 {
     this.m_nRowIndex = rowIndex;
     this.m_row       = null;
 }
 public CellEnteredEventArgs(Resco.Controls.AdvancedList.Cell c, Resco.Controls.AdvancedList.Row r, object data)
 {
     this.m_cell = c;
     this.m_row = r;
     this.m_data = data;
 }
 public RowEnteredEventArgs(Resco.Controls.AdvancedList.Row r, int iRowIndex)
 {
     this.m_row = r;
     this.m_iRowIndex = iRowIndex;
 }