.. wxPython Phoenix documentation

   This file was generated by Phoenix's sphinx generator and associated
   tools, do not edit by hand.

   Copyright: (c) 2011-2017 by Total Control Software
   License:   wxWindows License

.. include:: headings.inc



.. _wx.msw.Metafile:

==========================================================================================================================================
|phoenix_title|  **wx.msw.Metafile**
==========================================================================================================================================

A  ** :ref:`wx.msw.Metafile` **   represents the MS Windows metafile object, so metafile operations have no effect in X.          

In wxWidgets, only sufficient functionality has been provided for copying a graphic to the clipboard; this may be extended in a future version. 

Presently, the only way of creating a metafile is to use a :ref:`wx.msw.MetafileDC`. 









         



.. availability:: Only available for MSW.  







.. seealso:: :ref:`wx.msw.MetafileDC`    







|

|class_hierarchy| Class Hierarchy
=================================

.. raw:: html

   <div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;">
   <img id="toggleBlock-trigger" src="_static/images/closed.png"/>
   Inheritance diagram for class <strong>Metafile</strong>:
   </div>
   <div id="toggleBlock-summary" style="display:block;"></div>
   <div id="toggleBlock-content" style="display:none;">
   <p class="graphviz">
   <center><img src="_static/images/inheritance/wx.msw.Metafile_inheritance.png" alt="Inheritance diagram of Metafile" usemap="#dummy" class="inheritance"/></center>
   </div>
   <script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script>
   <map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.Object.html" title="wx.Object" alt="" coords="25,5,107,35"/> <area shape="rect" id="node2" href="wx.msw.Metafile.html" title="wx.msw.Metafile" alt="" coords="5,83,128,112"/> </map> 
   </p>

|


|method_summary| Methods Summary
================================

================================================================================ ================================================================================
:meth:`~wx.msw.Metafile.__init__`                                                Constructor.
:meth:`~wx.msw.Metafile.IsOk`                                                    Returns ``True`` if the metafile is valid.
:meth:`~wx.msw.Metafile.Play`                                                    Plays the metafile into the given device context, returning ``True`` if successful.
:meth:`~wx.msw.Metafile.SetClipboard`                                            Passes the metafile data to the clipboard.
================================================================================ ================================================================================


|


|api| Class API
===============


.. class:: wx.msw.Metafile(Object)

   **Possible constructors**::

       Metafile(filename="")
       
   
   A Metafile represents the MS Windows metafile object, so metafile
   operations have no effect in X.



   .. method:: __init__(self, filename=EmptyString)

      Constructor.                  

      If a filename is given, the Windows disk metafile is read in. Check whether this was performed successfully by using the :meth:`IsOk`   member.                  


      :param `filename`: 
      :type `filename`: string







   .. method:: IsOk(self)

      Returns ``True`` if the metafile is valid.                  

      :rtype: `bool`








   .. method:: Play(self, dc)

      Plays the metafile into the given device context, returning ``True`` if successful.                  


      :param `dc`: 
      :type `dc`: wx.DC




      :rtype: `bool`








   .. method:: SetClipboard(self, width=0, height=0)

      Passes the metafile data to the clipboard.                  

      The metafile can no longer be used for anything, but the :ref:`wx.msw.Metafile`  object must still be destroyed by the application. 

      Below is a example of metafile, metafile device context and clipboard use from the  ``hello.cpp``   example. Note the way the metafile dimensions are passed to the clipboard, making use of the device context's ability to keep track of the maximum extent of drawing commands. 

      ::

          dc = wx.MetafileDC()
          if dc.IsOk():
              self.DoDrawing(dc)
              metafile = dc.Close()
              if metafile:
                  success = metafile.SetClipboard(dc.MaxX() + 10, dc.MaxY() + 10)

                 


      :param `width`: 
      :type `width`: int
      :param `height`: 
      :type `height`: int




      :rtype: `bool`







