CreateArray
CDocBuilderValue^ CreateArray(nLength: int)
Description
Creates an array value, an analogue of new Array (length)
in JS.
Please note, that for the
.docbuilder
file theCDocBuilderContext.CreateArray
method is not used.
Parameters
- nLength
int
- The array length.
Example
.Net
string workDirectory = "C:/Program Files/ONLYOFFICE/DocumentBuilder";
CDocBuilder.Initialize(workDirectory);
CDocBuilder oBuilder = new CDocBuilder();
CContext oContext = oBuilder.GetContext();
CValue oArray = oContext.CreateArray(2);
CDocBuilder.Destroy();