I want to insert merge-field (<<xyz>>
) from JavaScript API to the word sheet. But, I am not able to find JavaScript API for Office Word Add-in.
Adding merge field using JavaScript API
1.7k Views Asked by Rakesh A R At
2
There are 2 best solutions below
0

I had to create a tskpane addin on word using angular and the office js API, to insert merge fields on text and on shapes rectangle, using ooxml
text merge field xml template to insert into word
<?mso-application progid="Word.Document"?> <w:wordDocument xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xml:space="preserve" w:embeddedObjPresent="no"> <w:body> <w:p> <w:fldSimple w:instr=" MERGEFIELD "${variableName}" "> <w:r> <w:rPr> <w:noProof /> </w:rPr> <w:t>«${variableName}»</w:t> </w:r> </w:fldSimple> </w:p> </w:body> </w:wordDocument>
xml template for shape/rectangle with merge field
<?mso-application progid="Word.Document"?>
<w:wordDocument xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xml:space="preserve" w:embeddedObjPresent="no">
<w:body>
<w:p xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0">
<w:r>
<w:pict>
<v:rect style="position:absolute;margin-left:0pt;margin-top:0pt;width:344pt;height:193.5pt;color:white;z-index:251659264;visibility:visible;mso-wrap-style:square;mso-width-percent:0;mso-height-percent:0;mso-wrap-distance-left:9pt;mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;mso-position-horizontal-relative:text;mso-position-vertical:absolute;mso-position-vertical-relative:text;mso-width-percent:0;mso-height-percent:0;mso-width-relative:margin;mso-height-relative:margin;v-text-anchor:middle" fillcolor="#4472c4 [3204]" strokecolor="#1f3763 [1604]" strokeweight="1pt">
<v:textbox>
<w:txbxContent>
<w:p>
<w:pPr>
<w:jc w:val="center" />
</w:pPr>
<w:fldSimple w:instr=" MERGEFIELD Image:${variableName} ">
<w:r>
<w:rPr>
<w:noProof />
</w:rPr>
<w:t>«Image:${variableName}»</w:t>
</w:r>
</w:fldSimple>
</w:p>
</w:txbxContent>
</v:textbox>
</v:rect>
</w:pict>
</w:r>
</w:p>
</w:body>
</w:wordDocument>
ooxml insert method
async insertMergeFieldOnDocument(xml: string) { return Word.run(async (context) => { let cursorOrSelection = context.document.getSelection(); context.load(cursorOrSelection); await context.sync(); cursorOrSelection.insertOoxml(xml, Word.InsertLocation.replace); await context.sync(); }); }
Above is the xml for Merge Field