]> git.saurik.com Git - wxWidgets.git/commitdiff
Add docs for SetMin and SetMax
authorRobin Dunn <robin@alldunn.com>
Thu, 16 May 2013 17:57:01 +0000 (17:57 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 16 May 2013 17:57:01 +0000 (17:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74012 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/slider.h

index eaf88adb7e5718bd6e18861105a3af51e759090a..a0b8b57ff72135fc51ba778433a8e6709c786778 100644 (file)
@@ -296,6 +296,27 @@ public:
     */
     virtual void SetLineSize(int lineSize);
 
+
+    /**
+        Sets the minimum slider value.
+
+        @param minValue
+            The new bottom end of the slider range.
+            
+        @see GetMin(), SetRange()
+    */
+    void SetMin( int minValue );
+
+    /**
+        Sets the maximum slider value.
+
+        @param maxValue
+            The new top end of the slider range.
+            
+        @see GetMax(), SetRange()
+    */
+    void SetMax( int maxValue );
+
     /**
         Sets the page size for the slider.