CreateFile
def CreateFile(self, type: int | str)
Description
Creates a new file. The type of the file which will be created needs to be set.
Parameters
- type
int | str
- The type of the file to be created set as a hexadecimal integer for the Python code or
docx
,xlsx
,pptx
, orpdf
for the.docbuilder
script file (see OFFICESTUDIO_FILE_XXX values).
Example
Python
builder = docbuilder.CDocBuilder()
builder.CreateFile("docx")
.docbuilder
builder.CreateFile("docx")