Description:
Write content of a template file to a docx file after insert or replace operation is finished.
Syntax:
report_write(D, outFilePath)
Note:
External library function (See The Programmer’s Reference).
Parameter:
D |
DocxChanger object. |
outFilePath |
Path of the docx to which the template file is exported, which can be an absolute one or a relative one. When it is the relative path, the base directory is the path specified in esProc main directory’s <mainPath> node in the configuration file. |
Return value:
File export path
Example:
|
A |
|
1 |
=report_open("D:\\wordFile.docx") |
Read template file wordFile.docx. |
2 |
=report_insert(A1,"Text1","插入的测试文字") |
|
3 |
=report_replace(A1,"sql","SPL") |
|
4 |
=report_write(A1,"D:\\outFile.docx") |
Write content of the template file on which insert and replace operations are finished performing to outFile.docx. |
Related function: