 
       wx.propgrid.PGCellRenderer¶
  wx.propgrid.PGCellRenderer¶Base class for wx.propgrid.PropertyGrid cell renderers.
 Methods Summary¶
 Methods Summary¶| __init__ | |
| DrawCaptionSelectionRect | Paints property category selection rectangle. | 
| DrawEditorValue | Utility to draw editor’s value, or vertically aligned text if editor is None. | 
| DrawText | Utility to draw vertically centered text. | 
| GetImageSize | Returns size of the image in front of the editable area. | 
| PostDrawCell | Utility to be called after drawing is done, to revert whatever changes PreDrawCelldid. | 
| PreDrawCell | Utility to render cell bitmap and set text colour plus bg brush colour. | 
| Render | Returns Trueif rendered something in the foreground (text or bitmap. | 
 Class API¶
 Class API¶wx.propgrid.PGCellRenderer(RefCounter)¶Possible constructors:
PGCellRenderer()
Base class for PropertyGrid cell renderers.
__init__(self)¶DrawCaptionSelectionRect(self, dc, x, y, w, h)¶Paints property category selection rectangle.
| Parameters: | 
 | 
|---|
DrawEditorValue(self, dc, rect, xOffset, text, property, editor)¶Utility to draw editor’s value, or vertically aligned text if editor is None.
| Parameters: | 
 | 
|---|
DrawText(self, dc, rect, imageWidth, text)¶Utility to draw vertically centered text.
| Parameters: | 
|---|
GetImageSize(self, property, column, item)¶Returns size of the image in front of the editable area.
| Parameters: | 
 | 
|---|---|
| Return type: | Size | 
Note
If property is None, then this call is for a custom value. In that case the item is index to   wx.propgrid.PropertyGrid‘s custom values.
PostDrawCell(self, dc, propGrid, cell, flags)¶Utility to be called after drawing is done, to revert whatever changes PreDrawCell   did.
| Parameters: | 
 | 
|---|
PreDrawCell(self, dc, rect, cell, flags)¶Utility to render cell bitmap and set text colour plus bg brush colour.
| Parameters: | 
 | 
|---|---|
| Return type: | int | 
| Returns: | Returns image width, which, for instance, can be passed to DrawText. | 
Render(self, dc, rect, propertyGrid, property, column, item, flags)¶Returns True if rendered something in the foreground (text or bitmap.
| Parameters: | 
 | 
|---|---|
| Return type: | bool |