|
|
|
|
|
VariantConvert (Function) In french: VariantConvertit Converts the value stored in a Variant variable.
PROCEDURE MyProcedure(Parameter) // Retrieve the parameter in a variant vVariant is Variant = Parameter // Convert the variant into string VariantConvert(vVariant, wlString)
Syntax
<Result> = VariantConvert(<Variant> , <Type>)
<Result>: Boolean - True if the operation was performed,
- False if an error occurred. For more details about the problem, use ErrorInfo.
<Variant>: Variant Name of the Variant variable. <Type>: Integer constant Identifies the type into which the content of the Variant variable must be converted. | | wlBinaryString | Binary string | wlBoolean | Boolean | wlCharacter | Character | wlCurrency | Currency | wlDate | Date | wlDateTime | DateTime | wlDuration | Duration | wlInt | Signed 4-byte integer | wlReal | 8-byte real | wlString | Character string | wlTime | Time |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|