Creates a new file. The type of the file which will be created needs to be set.
Name | Type | Description |
sExtension | const wchar_t* | The file extension. The following values are possible: docx, xlsx, pptx, or pdf (see AVS_OFFICESTUDIO_FILE_XXX values). |
std::wstring sWorkDirectory = NSUtils::GetBuilderDirectory(); CDocBuilder::Initialize(sWorkDirectory.c_str()); CDocBuilder oBuilder; oBuilder.CreateFile("docx"); CDocBuilder::Dispose();
builder.CreateFile("docx");