确定段落是标准文本还是标题

时间:2015-10-02 19:52:46

标签: c# .net ms-word vsto word-addins

有没有办法确定段落是标准文本还是标题?

不使用任何第三方组件,例如Spire.Doc

请注意以下代码:仅当Word样式"标题1"没有重命名。

object thisTempStyle = p.get_Style();
Style thisparagraphStyle = thisTempStyle as Style;
string actualStyle = thisparagraphStyle.NameLocal;

if (actualStyle == "Heading 1")
...

所以,我想在不知道名字的情况下获取标题。

谢谢

1 个答案:

答案 0 :(得分:1)

您还可以检查段落的大纲级别 (https://msdn.microsoft.com/en-us/library/office/ff839401.aspx)。

switch(thisparagraphStyle.ParagraphFormat.OutlineLevel)
{
  case WdOutlineLevel.wdOutlineLevel1:
    // Heading 1
    break; 
  case WdOutlineLevel.wdOutlineLevelBodyText:
    // Body Paragraph
    break;
}