Description:
Write content of a template file to a docx file after insert or replace operation is finished.
Syntax:
reportlite_write(D, outFilePath)
Note:
External library function (See ReportLite User Reference).
Parameter:
D |
DocxChange 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 |
=reportlite_open("D:\\wordFile.docx") |
Read template file wordFile.docx. |
2 |
=reportlite_insert(A1,"Text1","插入的测试文字") |
|
3 |
=reportlite_replace(A1,"sql","SPL") |
|
4 |
=reportlite_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: