GetAllFieldValues Method
Overloads
| GetAllFieldValues(Int32) |
Get all values for the field. |
|
| GetAllFieldValues(StateEnumType, Int32) |
Get all values for the field that have a specific state. |
GetAllFieldValues(Int32)
Get all values for the field.
Declaration
public IEnumerable<NxCell> GetAllFieldValues(int pageSize = 20)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | pageSize |
The number of field values to retrieve per iteration. |
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<NxCell> |
The lazily evaluated complete set of values for the field. |
Implements
GetAllFieldValues(StateEnumType, Int32)
Get all values for the field that have a specific state.
Declaration
public IEnumerable<NxCell> GetAllFieldValues(StateEnumType state, int pageSize = 20)
Parameters
| Type | Name | Description |
|---|---|---|
| StateEnumType | state |
The state of the values to retrieved (e.g., , )
|
| System.Int32 | pageSize |
The number of field values to retrieve per iteration. |
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<NxCell> |
The lazily evaluated complete set of values for the field for the specified state. |