Function isUInt8
Synopsis
#include <include/bitpropvariant.hpp>
bool isUInt8() const
Description
- Returns
- true if this variant is an 8-bit unsigned integer, false otherwise.
Source
Lines 401-403 in src/bitpropvariant.cpp. Line 503 in include/bitpropvariant.hpp.
bool BitPropVariant::isUInt8() const {
return vt == VT_UI1;
}