Click or drag to resize

SelectOptions(Boolean, Boolean, Int32, Int32, Boolean, Boolean, Boolean, Boolean) Constructor

Linkar Framework for .NET and Core


Initializes a new instance of the SelectOptions class.

Namespace: Linkar.Functions
Assembly: Linkar.Functions (in Linkar.Functions.dll) Version: 2.3.1
Syntax
public SelectOptions(
	bool onlyRecordId,
	bool pagination = false,
	int regPage = 10,
	int numPage = 1,
	bool calculated = false,
	bool conversion = false,
	bool formatSpec = false,
	bool originalRecords = false
)

Parameters

onlyRecordId  Boolean
Returns just the ID(s) of selected record(s).
pagination  Boolean  (Optional)
True if pagination is being used.
regPage  Int32  (Optional)
For use with pagination, indicates the number of records by page. Must be greater than 0.
numPage  Int32  (Optional)
For use with pagination, indicates the page number to obtain. Must be greater than 0.
calculated  Boolean  (Optional)
Return the resulting values from the calculated dictionaries.
conversion  Boolean  (Optional)
Execute the defined conversions in the dictionaries before returning.
formatSpec  Boolean  (Optional)
Execute the defined formats in the dictionaries before returning.
originalRecords  Boolean  (Optional)
Return a copy of the records in MV format.
See Also