Method | Description | |
---|---|---|
Dispose ( ) : void |
Releases the unmanaged resources used by the Renderer and optionally releases the managed resources
|
|
GetCellHeight ( |
Returns the height that is required to render this cell. If zero is returned then the default row height is used.
|
|
OnClick ( |
Raises the Click event
|
|
OnDoubleClick ( |
Raises the DoubleClick event
|
|
OnGotFocus ( |
Raises the GotFocus event
|
|
OnKeyDown ( |
Raises the KeyDown event
|
|
OnKeyUp ( |
Raises the KeyUp event
|
|
OnLostFocus ( |
Raises the LostFocus event
|
|
OnMouseDown ( |
Raises the MouseDown event
|
|
OnMouseEnter ( |
Raises the MouseEnter event
|
|
OnMouseLeave ( |
Raises the MouseLeave event
|
|
OnMouseMove ( |
Raises the MouseMove event
|
|
OnMouseUp ( |
Raises the MouseUp event
|
|
OnPaintCell ( |
Raises the PaintCell event
|
Method | Description | |
---|---|---|
CellRenderer ( ) : System |
Initializes a new instance of the CellRenderer class with default settings
|
|
GetRendererData ( |
Gets the renderer specific data used by the Renderer from the specified Cell
|
|
OnPaint ( |
Raises the Paint event
|
|
OnPaintBackground ( |
Raises the PaintBackground event
|
|
OnPaintBorder ( |
Raises the PaintBorder event
|
|
SetRendererData ( |
Sets the specified renderer specific data used by the Renderer for the specified Cell
|
public GetCellHeight ( |
||
graphics | The GDI+ drawing surface provided by the Paint event. | |
cell | ||
return | int |
protected GetRendererData ( |
||
cell | The Cell to get the renderer data for | |
return | object |
public OnClick ( |
||
e | A CellMouseEventArgs that contains the event data | |
return | void |
public OnDoubleClick ( |
||
e | A CellMouseEventArgs that contains the event data | |
return | void |
public OnGotFocus ( |
||
e | A CellFocusEventArgs that contains the event data | |
return | void |
public OnKeyDown ( |
||
e | A CellKeyEventArgs that contains the event data | |
return | void |
public OnKeyUp ( |
||
e | A CellKeyEventArgs that contains the event data | |
return | void |
public OnLostFocus ( |
||
e | A CellFocusEventArgs that contains the event data | |
return | void |
public OnMouseDown ( |
||
e | A CellMouseEventArgs that contains the event data | |
return | void |
public OnMouseEnter ( |
||
e | A CellMouseEventArgs that contains the event data | |
return | void |
public OnMouseLeave ( |
||
e | A CellMouseEventArgs that contains the event data | |
return | void |
public OnMouseMove ( |
||
e | A CellMouseEventArgs that contains the event data | |
return | void |
public OnMouseUp ( |
||
e | A CellMouseEventArgs that contains the event data | |
return | void |
protected OnPaint ( |
||
e | A PaintCellEventArgs that contains the event data | |
return | void |
protected OnPaintBackground ( |
||
e | A PaintCellEventArgs that contains the event data | |
return | void |
protected OnPaintBorder ( |
||
e | A PaintCellEventArgs that contains the event data | |
pen | The pen used to draw the border | |
return | void |
public OnPaintCell ( |
||
e | A PaintCellEventArgs that contains the event data | |
return | void |
protected SetRendererData ( |
||
cell | The Cell for which the data is to be stored | |
value | object | The renderer specific data to be stored |
return | void |