| NewOptions Constructor (RecordIdType, Boolean, Boolean, Boolean, Boolean, Boolean) |
Initializes a new instance of the
NewOptions class
Namespace:
LinkarCommon
Assembly:
LinkarClientCOM (in LinkarClientCOM.dll) Version: 2.1.0.0 (2.1.0.0)
Syntax public NewOptions(
RecordIdType recordIdType,
bool readAfter = false,
bool calculated = false,
bool conversion = false,
bool formatSpec = false,
bool originalRecords = false
)
Public Sub New (
recordIdType As RecordIdType,
Optional readAfter As Boolean = false,
Optional calculated As Boolean = false,
Optional conversion As Boolean = false,
Optional formatSpec As Boolean = false,
Optional originalRecords As Boolean = false
)
public:
NewOptions(
RecordIdType^ recordIdType,
bool readAfter = false,
bool calculated = false,
bool conversion = false,
bool formatSpec = false,
bool originalRecords = false
)
new :
recordIdType : RecordIdType *
?readAfter : bool *
?calculated : bool *
?conversion : bool *
?formatSpec : bool *
?originalRecords : bool
(* Defaults:
let _readAfter = defaultArg readAfter false
let _calculated = defaultArg calculated false
let _conversion = defaultArg conversion false
let _formatSpec = defaultArg formatSpec false
let _originalRecords = defaultArg originalRecords false
*)
-> NewOptions
Parameters
- recordIdType
- Type: LinkarCommonRecordIdType
Specify the different techniques for generating codes. Mandatory if no registration codes are indicated in the New operations.
- readAfter (Optional)
- Type: SystemBoolean
Reads the record again and returns it after the update. Calculated, dictionaries, conversion, formatSpec and originalRecords will only make effect if this option is true. - calculated (Optional)
- Type: SystemBoolean
Return the resulting values from the calculated dictionaries. - conversion (Optional)
- Type: SystemBoolean
Execute the defined conversions in the dictionaries before returning. - formatSpec (Optional)
- Type: SystemBoolean
Execute the defined formats in the dictionaries before returning. - originalRecords (Optional)
- Type: SystemBoolean
Return a copy of the records in MV format.
See Also