GetAllData Method
Overloads
| GetAllData(Int32) | Get all data from pager starting from row 0 with page size width set to NumberOfColumns. Equivalent to: . | |
| GetAllData(NxPage) | Get all data from pager using the argument as initial page for iteration. | 
GetAllData(Int32)
Get all data from pager starting from row 0 with page size width set to NumberOfColumns.
Equivalent to:
GetAllData(new NxPage { Height = pageHeight, Width = NumberOfColumns })Declaration
      public IEnumerable<NxCellRows> GetAllData(int pageHeight = 20)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | pageHeight | Size of each page when iterating. | 
Returns
| Type | Description | 
|---|---|
| System.Collections.Generic.IEnumerable<NxCellRows> | The lazily evaluated complete set of rows of the pager. | 
GetAllData(NxPage)
Get all data from pager using the argument as initial page for iteration.
Declaration
      public IEnumerable<NxCellRows> GetAllData(NxPage initialPage)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| NxPage | initialPage | 
Returns
| Type | Description | 
|---|---|
| System.Collections.Generic.IEnumerable<NxCellRows> | The lazily evaluated complete set of rows of the pager. |