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