| CommonOptions(Boolean, Boolean, Boolean, Boolean) Constructor |
Linkar Framework .NET (Core and Framework)
Initializes a new instance of the CommonOptions class.
Namespace: Linkar.FunctionsAssembly: Linkar.Functions (in Linkar.Functions.dll) Version: 2.3.1
Syntax public CommonOptions(
bool calculated,
bool conversion = false,
bool formatSpec = false,
bool originalRecords = false
)
Public Sub New (
calculated As Boolean,
Optional conversion As Boolean = false,
Optional formatSpec As Boolean = false,
Optional originalRecords As Boolean = false
)
public:
CommonOptions(
bool calculated,
bool conversion = false,
bool formatSpec = false,
bool originalRecords = false
)
new :
calculated : bool *
?conversion : bool *
?formatSpec : bool *
?originalRecords : bool
(* Defaults:
let _conversion = defaultArg conversion false
let _formatSpec = defaultArg formatSpec false
let _originalRecords = defaultArg originalRecords false
*)
-> CommonOptions
Parameters
- calculated Boolean
- 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