***************** wx.GraphicsObject ***************** Inheritance diagram for `wx.GraphicsObject`: | .. inheritance-diagram:: wx.GraphicsObject | Description =========== This class is the superclass of native graphics objects like pens etc. It allows reference counting. Not to be instantiated by user code. .. seealso:: `wx.GraphicsBrush `_, `wx.GraphicsPen `_, `wx.GraphicsMatrix `_, `wx.GraphicsPath `_ Derived From ^^^^^^^^^^^^^ * `wx.Object `_ Known Subclasses ^^^^^^^^^^^^^^^^ `wx.GraphicsBrush `_, `wx.GraphicsContext `_, `wx.GraphicsFont `_, `wx.GraphicsMatrix `_, `wx.GraphicsPath `_, `wx.GraphicsPen `_ Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `GetRenderer <#GetRenderer>`_ * `IsNull <#IsNull>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(renderer=None) This class is the superclass of native graphics objects like pens etc. It provides the internal reference counting. It is not to be instantiated by user code. **Parameters:** * `renderer` (`wx.GraphicsRenderer `_) | **Returns:** `wx.GraphicsObject `_ -------- .. method:: GetRenderer() Returns the renderer that was used to create this instance, or ``None`` if it has not been initialized yet | **Returns:** `wx.GraphicsRenderer `_ -------- .. method:: IsNull() Is this object valid (``False``) or still empty (``True``)? | **Returns:** `bool`