From: Vadim Zeitlin Date: Sat, 24 Jul 2010 11:56:06 +0000 (+0000) Subject: Document wxGridSelectRowsOrColumns selection mode. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b08cf4f401c972e5aee8cf3f5ea4913add14300f Document wxGridSelectRowsOrColumns selection mode. See #12195. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65074 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/grid.h b/interface/wx/grid.h index 88c9196d60..7e8c2584be 100644 --- a/interface/wx/grid.h +++ b/interface/wx/grid.h @@ -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 }; /**