Call

CDocBuilderValue^ Call(sName, p1, p2, p3, p4, p5, p6);

Calls the specified Document Builder method. See the Text document API, Spreadsheet API, Presentation API or Form API sections for more information which methods are available for various document types.

Please note, that for the .docbuilder file the CDocBuilderValue.Call method is not used explicitly. The method itself is used instead. See the example below.

Parameters:

Name Type Description
sName String^ The name of the Document Builder method.
p1-p6 CBuilderValue^ The parameters that the Document Builder method takes as argumens.

Example

.Net

string workDirectory = "C:/Program Files/ONLYOFFICE/DocumentBuilder";
CDocBuilder.Initialize(workDirectory);
CDocBuilder oBuilder = new CDocBuilder();
CContext oContext = oBuilder.GetContext();
CValue oGlobal = oContext.GetGlobal();
CValue oApi = oGlobal["Api"];
CValue oDocument = oApi.Call("GetDocument");
CDocBuilder.Destroy();

.docbuilder

var oDocument = Api.GetDocument();