word2019檢視NPOI建立的word中打勾方框,顯示正常,但是word2021顯示就變成下面這個樣子了,應該是word2021對這個特殊字元的渲染導致的
想要普通的效果,白色背景黑邊黑勾的效果,換一個字型可以解決
c# 程式碼
XWPFDocument document = new XWPFDocument(); XWPFParagraph paragraph = document.CreateParagraph(); XWPFRun xWPFRun = paragraph.CreateRun(); xWPFRun.SetText("R"); xWPFRun.FontSize = fontSize; xWPFRun.SetFontFamily("Wingdings 2", FontCharRange.None);
這是效果