TRY NEW VERSION

Try now New API BETA

Try out the new view and capabilities of the API documentation

START

CreateFile

def CreateFile(self, type);

Creates a new file. The type of the file which will be created needs to be set.

Parameters:

Name Type Description
type int | str The type of the file to be created set as a hexadecimal integer for the Python code or docx, xlsx, pptx, or pdf for the .docbuilder script file (see AVS_OFFICESTUDIO_FILE_XXX values).

Example

Python

builder = docbuilder.CDocBuilder()
builder.CreateFile("docx")

.docbuilder

builder.CreateFile("docx");