Chapter 4 Virtual Grids
Background
Data can be stored and displayed in two ways with OBJECTIVE GRID FOR .NET GridControl objects:
- First, the GridControl properties
RowCountandColCountand the GridControl methodsSetStyleRangeandSetValueRangecan be used to set the size of the grid and to store data directly to the grid. - Second, the
GetStyleRowColandStoreStyleRowColevents can be used to store and retrieve grid data from your own data structure or structures.
With this method, the grid data is stored directly in the GridControl’s parameter object. The size and content of the grid is managed entirely by the GridControl and its parameter object.
With this method, you are responsible for managing, to some degree, the size and content of the grid.
For OBJECTIVE GRID FOR .NET, “Virtual Grid” refers to the second use case (or some hybrid of both use cases).