Document wxGridSelectRowsOrColumns selection mode.

See #12195.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65074 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2010-07-24 11:56:06 +00:00
parent 9ea83ebc7c
commit b08cf4f401

View 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
};
/**