CreateFile
bool CreateFile(sExtension: const wchar_t*)
Description
Creates a new file. The type of the file which will be created needs to be set.
Parameters
- sExtension
const wchar_t*
- The file extension. The following values are possible:
docx
,xlsx
,pptx
, orpdf
(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")