CreateFile
Creates a new file. The type of the file which will be created needs to be set.
Parameters:
Name |
Type |
Description |
nType |
int |
The type of the file to be created set as a hexadecimal integer for the .Net code or docx, xlsx or pptx for the .docbuilder script file
(see AVS_OFFICESTUDIO_FILE_XXX values). |
Example
string workDirectory = "C:/Program Files/ONLYOFFICE/DocumentBuilder";
CDocBuilder.Initialize(workDirectory);
CDocBuilder oBuilder = new CDocBuilder();
var doctype = (int)OfficeFileTypes.Document.DOCX;
oBuilder.CreateFile(doctype);
CDocBuilder.Destroy();
builder.CreateFile("docx");