Function isInt32
Synopsis
#include <include/bitpropvariant.hpp>
bool isInt32() const
Description
- Returns
- true if this variant is an 8, 16 or 32-bit integer, false otherwise.
Source
Lines 425-427 in src/bitpropvariant.cpp. Line 533 in include/bitpropvariant.hpp.
bool BitPropVariant::isInt32() const {
return vt == VT_I4 || vt == VT_INT || vt == VT_I2 || vt == VT_I1;
}