| SelectOptions(Boolean, Boolean, Int32, Int32, Boolean, Boolean, Boolean, Boolean) Constructor |
Linkar Framework .NET (Core and Framework)
Initializes a new instance of the SelectOptions class.
Namespace: Linkar.FunctionsAssembly: 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
)
Public Sub New (
onlyRecordId As Boolean,
Optional pagination As Boolean = false,
Optional regPage As Integer = 10,
Optional numPage As Integer = 1,
Optional calculated As Boolean = false,
Optional conversion As Boolean = false,
Optional formatSpec As Boolean = false,
Optional originalRecords As Boolean = false
)
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
)
new :
onlyRecordId : bool *
?pagination : bool *
?regPage : int *
?numPage : int *
?calculated : bool *
?conversion : bool *
?formatSpec : bool *
?originalRecords : bool
(* Defaults:
let _pagination = defaultArg pagination false
let _regPage = defaultArg regPage 10
let _numPage = defaultArg numPage 1
let _calculated = defaultArg calculated false
let _conversion = defaultArg conversion false
let _formatSpec = defaultArg formatSpec false
let _originalRecords = defaultArg originalRecords false
*)
-> SelectOptions
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