lrc_variant_uint_by_ref
| Assignment to Variants - By Reference and By Variant |
Assigns a string to an unsigned integer stored by reference in a variant.
VARIANT lrc_variant_uint_by_ref( const char* str );
| str | A character string representing an unsigned integer. |
The lrc_variant_uint_by_ref function assigns a string to a stored by reference unsigned integer in a variant.
Return Values
Parameterization
You cannot use standard parameterization for any arguments in this function.
Example
This example assigns a string to a unsigned integer stored by reference in a variant.
VARIANT var = lrc_variant_uint_by_ref("34000");

