IsDouble
HRESULT IsDouble(result: [out, retval] VARIANT_BOOL*)
Description
Returns true if the CDocBuilderValue
object is a double value.
Please note, that for the
.docbuilder
file theCDocBuilderValue.IsDouble
method is not used.
Parameters
- result
VARIANT_BOOL*
- Specifies whether the
CDocBuilderValue
object is a double value.
Example
COM
CoInitialize(NULL);
IONLYOFFICEDocBuilder* oBuilder = NULL;
IONLYOFFICEDocBuilderContext* oContext = NULL;
IONLYOFFICEDocBuilderValue* oGlobal = NULL;
VARIANT_BOOL b;
oBuilder->Initialize();
oBuilder->GetContext(&oContext);
oContext->GetGlobal(&oGlobal);
oGlobal->IsDouble(&b);
oBuilder->Dispose();