Add wxGridSelectNone selection mode

In this mode the user can't select any cells at all in wxGrid.
This commit is contained in:
Gary Allen
2020-10-22 13:04:23 +02:00
committed by Vadim Zeitlin
parent a64348f3e4
commit 095d1e317c
4 changed files with 49 additions and 6 deletions

View File

@@ -2945,7 +2945,16 @@ public:
@since 2.9.1
*/
wxGridSelectRowsOrColumns
wxGridSelectRowsOrColumns,
/**
The selection mode allowing no selections to be made at all.
The user won't be able to select any cells in this mode.
@since 3.1.5
*/
wxGridSelectNone
};
/**