CreateScope
HRESULT CreateScope([out, retval] I_DOCBUILDER_CONTEXT_SCOPE** result);
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.
Parameters
Name | Type | Description |
---|---|---|
result | I_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();