#include <wx/grid.h>
Represents a collection of grid blocks that can be iterated over.
This class provides read-only access to the blocks making up the grid selection in the most general case.
Note that objects of this class can only be returned by wxGrid, but not constructed in the application code.
The preferable way to iterate over it is using C++11 range-for loop:
When not using C++11, iteration has to be done manually:
Classes | |
class | iterator |
Read-only forward iterator type. More... | |
Public Member Functions | |
iterator | begin () const |
Return iterator corresponding to the beginning of the range. More... | |
iterator | end () const |
Return iterator corresponding to the end of the range. More... | |
iterator wxGridBlocks::begin | ( | ) | const |
Return iterator corresponding to the beginning of the range.
iterator wxGridBlocks::end | ( | ) | const |
Return iterator corresponding to the end of the range.