Skip to main content

CreateObject

Creates an empty object, an analogue of {} in JS.

Please note, that for the .docbuilder file the CDocBuilderContext.CreateObject method is not used.

Syntax

HRESULT CreateObject([out, retval] I_DOCBUILDER_VALUE** result);

Parameters

ParameterTypeDescription
resultI_DOCBUILDER_VALUE**The pointer to store the created empty object

Example

COM

CoInitialize(NULL);
IONLYOFFICEDocBuilder* oBuilder = NULL;
IONLYOFFICEDocBuilderContext* oContext = NULL;
IONLYOFFICEDocBuilderValue* oContent = NULL;
oBuilder->Initialize();
oBuilder->GetContext(&oContext);
oContext->CreateObject(&oContent);
oBuilder->Dispose();