Skip to main content

CreateScope

Creates a context scope which sets the execution context for all operations executed within a local scope.

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

Syntax

HRESULT CreateScope([out, retval] I_DOCBUILDER_CONTEXT_SCOPE** result);

Parameters

ParameterTypeDescription
resultI_DOCBUILDER_CONTEXT_SCOPE**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();