Esempio n. 1
0
 public void Paint(sd.Graphics graphics, sd.Rectangle clipBounds, sd.Rectangle cellBounds, int rowIndex, swf.DataGridViewElementStates cellState, object value, object formattedValue, string errorText, swf.DataGridViewCellStyle cellStyle, swf.DataGridViewAdvancedBorderStyle advancedBorderStyle, ref swf.DataGridViewPaintParts paintParts)
 {
     if (GridHandler != null)
     {
         GridHandler.Paint(this, graphics, clipBounds, cellBounds, rowIndex, cellState, value, formattedValue, errorText, cellStyle, advancedBorderStyle, ref paintParts);
     }
 }
Esempio n. 2
0
 public bool MouseClick(swf.MouseEventArgs e, int rowIndex)
 {
     return(GridHandler != null && GridHandler.CellMouseClick(this, e, rowIndex));
 }
Esempio n. 3
0
 public int GetRowOffset(int rowIndex)
 {
     return(GridHandler != null?GridHandler.GetRowOffset(this, rowIndex) : 0);
 }