GetAllCells Method
Overloads
| GetAllCells(Int32) | Get all cells values. Equivalent to: . | 
GetAllCells(Int32)
Get all cells values.
Equivalent to:
GetAllData(pageSize).Select(c => c.First())Declaration
      public IEnumerable<NxCell> GetAllCells(int pageSize = 20)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | pageSize | The number of values to retrieve per iteration. | 
Returns
| Type | Description | 
|---|---|
| System.Collections.Generic.IEnumerable<NxCell> | The lazily evaluated complete set of cells values for the pager. |