]> git.saurik.com Git - wxWidgets.git/commitdiff
Document wxGridSelectRowsOrColumns selection mode.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 24 Jul 2010 11:56:06 +0000 (11:56 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 24 Jul 2010 11:56:06 +0000 (11:56 +0000)
See #12195.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65074 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/grid.h

index 88c9196d60b2f359fdc70a25df7c99e9cc21783b..7e8c2584beb92a3c3a834c2d1017bfb7c6de7ac7 100644 (file)
@@ -1686,7 +1686,20 @@ public:
 
             The user won't be able to select any cells or rows in this mode.
          */
-        wxGridSelectColumns
+        wxGridSelectColumns,
+
+        /**
+            The selection mode allowing the user to select either the entire
+            columns or the entire rows but not individual cells nor blocks.
+
+            Notice that while this constant is defined as @code
+            wxGridSelectColumns | wxGridSelectRows @endcode this doesn't mean
+            that all the other combinations are valid -- at least currently
+            they are not.
+
+            @since 2.9.1
+         */
+        wxGridSelectRowsOrColumns
     };
 
     /**