]> git.saurik.com Git - wxWidgets.git/commitdiff
documented SelectAll()
authorVáclav Slavík <vslavik@fastmail.fm>
Sat, 22 Mar 2008 15:02:31 +0000 (15:02 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sat, 22 Mar 2008 15:02:31 +0000 (15:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52699 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/textctrl.h

index 5332168e63bb497e0da216313a28af22420a8fc8..65cbd6e74759160b92fcb40bf747c6ab59e490f4 100644 (file)
@@ -1224,17 +1224,26 @@ public:
     void SetModified(bool modified);
 
     /**
-        Selects the text starting at the first position up to (but not including) the
-        character at the last position. If both parameters are equal to -1 all text
-        in the control is selected.
+        Selects the text starting at the first position up to (but not
+        including) the character at the last position. If both parameters are
+        equal to -1 all text in the control is selected.
 
         @param from
             The first position.
         @param to
             The last position.
+
+        @see SelectAll()
     */
     virtual void SetSelection(long from, long to);
 
+    /**
+        Selects all text in the control.
+
+        @see SetSelection()
+    */
+    virtual void SelectAll();
+
     /**
         Changes the style of the given range. If any attribute within @a style is
         not set, the corresponding attribute from GetDefaultStyle() is used.