VariantType indicates the data types after string conversion.

Enumeration data structure

enum VariantType {
    VT_INTEGER = 0;
    VT_DOUBLE = 1;
    VT_STRING = 3;
}
  • VT_INTEGER: integer type
  • VT_DOUBLE: double-precision floating-point type
  • VT_STRING: string type