class Window(Boost.Python.instance)
    Plot/List window
 
 
Method resolution order:
Window
Boost.Python.instance
builtins.object

Static methods defined here:
__init__(...)
Raises an exception
This class cannot be instantiated from Python
__reduce__ = (...)
close(...)
close( (Window)self) -> None :
    Closes the window
copy(...)
copy( (Window)self [, (str)type='' [, (int)width=-1 [, (int)height=-1]]]) -> None :
    Copies the content of the window to the clipboard
    type   --- the image format used when copying. Available formats are,
               For 2D plots: 'bmp', 'jpeg', 'png', 'emf' and 'emf (Legacy)' (default is emf).
               For 3D-plots: bmp, jpeg, png and eps (default is png).
               This argument is ignored if the window isn't a plot.
    width  --- The with of the image in pixels. Default is 600.
               If width is specified, height must also be specified.
    height --- The height of the image in pixels. Default is 375.
               If height is specified, width must also be specified.
get_frame_native_handle(...)
get_frame_native_handle( (Window)self) -> int :
    Returns the native Windows handle to the frame window that holds the plot view.
    The returned value can be used with the Python for Win32 Extensions.
get_view_native_handle(...)
get_view_native_handle( (Window)self) -> int :
    Returns the native windows handle to the window that holds the plot.
    The returned value can be used with the Python for Win32 Extensions.
maximize(...)
maximize( (Window)self) -> None :
    Maximizes the window
minimize(...)
minimize( (Window)self) -> None :
    Minimizes the window

Static methods inherited from Boost.Python.instance:
__new__(*args, **kwargs) from Boost.Python.class
Create and return a new object.  See help(type) for accurate signature.

Data descriptors inherited from Boost.Python.instance:
__dict__
__weakref__