IsString
HRESULT IsString([out, retval] VARIANT_BOOL* result);
Returns true if the CDocBuilderValue object is a string.
Please note, that for the .docbuilder file the CDocBuilderValue.IsString method is not used.
Parameters
Name | Type | Description |
---|---|---|
result | VARIANT_BOOL* | Specifies whether the CDocBuilderValue object is a string. |
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->IsString(&b);
oBuilder->Dispose();