]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/combo.h
Added wxComboCtrl::SetTextCtrlStyle()
[wxWidgets.git] / interface / wx / combo.h
index 82c63e4c42a3cfd3f225eac34ef39ece5938f427..9ed3db36cfae59e0523b800e7ecd57e5f1c4fe36 100644 (file)
@@ -734,6 +734,22 @@ public:
     */
     void SetText(const wxString& value);
 
+    /**
+        Set a custom window style for the embedded wxTextCtrl. Usually you
+        will need to use this during two-step creation, just before Create().
+        For example:
+
+        @code
+            wxComboCtrl* comboCtrl = new wxComboCtrl();
+
+            // Let's make the text right-aligned
+            comboCtrl->SetTextCtrlStyle(wxTE_RIGHT);
+
+            comboCtrl->Create(parent, wxID_ANY, wxEmptyString);
+        @endcode
+    */
+    void SetTextCtrlStyle( int style );
+
     /**
         This will set the space in pixels between left edge of the control and
         the text, regardless whether control is read-only or not. Value -1 can