*************** wx.OutputStream *************** Inheritance diagram for `wx.OutputStream`: | .. inheritance-diagram:: wx.OutputStream | Description =========== `wx.OutputStream` is an abstract base class which may not be used directly. Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `LastWrite <#LastWrite>`_ * `PutC <#PutC>`_ * `SeekO <#SeekO>`_ * `TellO <#TellO>`_ * `close <#close>`_ * `eof <#eof>`_ * `flush <#flush>`_ * `seek <#seek>`_ * `tell <#tell>`_ * `write <#write>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(p) Creates a dummy `wx.OutputStream` object. **Parameters:** * `p` (PyObject) | **Returns:** `wx.OutputStream `_ -------- .. method:: LastWrite() Returns the number of bytes written during the last `write <#write>`_. It may return 0 even if there is no error on the stream if it is only temporarily impossible to write to it. | **Returns:** `long` -------- .. method:: PutC(c) Puts the specified character in the output queue and increments the stream position. **Parameters:** * `c` (string) -------- .. method:: SeekO(pos, mode=wx.FromStart) Changes the stream current position. **Parameters:** * `pos` (int): Offset to seek to * `mode` (int): One of ``wx.FromStart``, ``wx.FromEnd``, ``wx.FromCurrent`` | **Returns:** `long` -------- .. method:: TellO() Returns the current stream position. | **Returns:** `long` -------- .. method:: close() `No docstrings available for this method.` -------- .. method:: eof() `No docstrings available for this method.` -------- .. method:: flush() `No docstrings available for this method.` -------- .. method:: seek(offset, whence=0) | **Parameters:** * `offset` (int) * `whence` (int) -------- .. method:: tell() `No docstrings available for this method.` -------- .. method:: write(data) | **Parameters:** * `data` (PyObject)