mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-06 12:00:13 +01:00
10 lines
212 B
Python
10 lines
212 B
Python
|
|
dc = wx.MetafileDC()
|
|
if dc.IsOk():
|
|
self.DoDrawing(dc)
|
|
metafile = dc.Close()
|
|
if metafile:
|
|
success = metafile.SetClipboard(dc.MaxX() + 10, dc.MaxY() + 10)
|
|
|
|
|