I want to get the text font name,How can I do?
- Code: Select all
<w:r w:rsidRPr="00564CD8">
<w:rPr>
<w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hint="eastAsia"/>
</w:rPr>
<w:t>4</w:t>
</w:r>
like this, I know the font name is "黑体".
- Code: Select all
<w:r>
<w:rPr>
<w:rFonts w:hint="eastAsia"/>
</w:rPr>
<w:t>1</w:t>
</w:r>
if the code like this one,How to get the font name?
thanks.