How to insert a cover page in MS Word at the beginning of the document?
问题 I need to insert a cover page into a Word 2016 document. The building block is a cover page and has InsertOptions = (int)WdDocPartInsertOptions.wdInsertPage; //= 2 So far so good. But VSTO can only insert so: buildingBlock.Insert(range); It does insert in place of range. The event Application.ActiveDocument.BuildingBlockInsert is not raised. Using native insert cover page (tab insert --> cover page) does insert properly (and creates only one undo entry insert building block). // -------------