CreateScope
HRESULT CreateScope(result: [out, retval] I_DOCBUILDER_CONTEXT_SCOPE**)
Description
Creates a context scope which sets the execution context for all operations executed within a local scope.
Please note, that for the
.docbuilder
file theCDocBuilderContext.CreateScope
method is not used.
Parameters
- The returned context scope.
Example
COM
CoInitialize(NULL);
IONLYOFFICEDocBuilder* oBuilder = NULL;
IONLYOFFICEDocBuilderContext* oContext = NULL;
IONLYOFFICEDocBuilderContextScope* oScope = NULL;
oBuilder->Initialize();
oBuilder->GetContext(&oContext);
oContext->CreateScope(&oScope);
oBuilder->Dispose();