]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_dc.i
reSWIGged
[wxWidgets.git] / wxPython / src / _dc.i
index 7d0fa94a4fcb1fc315210ae7baa6bda130c0a201..edfe3a45e802ca7abdecf8e5457e3d90f963a244 100644 (file)
@@ -277,6 +277,15 @@ public:
         "Get the width, height, decent and leading of the text using the current or specified font.\n"
         "Works for single as well as multi-line strings.");
 
+    
+    %extend {
+        wxArrayInt GetPartialTextExtents(const wxString& text) {
+            wxArrayInt widths;
+            self->GetPartialTextExtents(text, widths);
+            return widths;
+        }
+    }
+    
 
     // size and resolution
     // -------------------