NPVariantType

« Gecko Plugin API Reference « Scripting plugins

Summary

NPVariantType is an enumeration that is used to identify the data type of an NPVariant structure.

Syntax

typedef enum {
    NPVariantType_Void,
    NPVariantType_Null,
    NPVariantType_Bool,
    NPVariantType_Int32,
    NPVariantType_Double,
    NPVariantType_String,
    NPVariantType_Object
} NPVariantType;

Description

Each type is self-explanatory.

See also