0
A
回答
0
我不知道這是否是你想要的。
public List<string> getChapterNumbers()
{
List<string> chapters = new List<string>();
foreach (Word.Paragraph p in currentDocument.Paragraphs)
{
string style = p.get_Style();
if (style.Equals("Heading 1"))
{
var chapter = p.Range.ListFormat.ListString;
chapters.Add(chapter);
}
if (style.Equals("Heading 2"))
{
var chapter = p.Range.ListFormat.ListString;
chapters.Add(chapter);
}
}
return chapters;
}
相關問題
- 1. Docbook:標題中的章節編號和單詞「章節」
- 2. 獲取單詞出現在Word VBA文檔中的章節
- 3. Chrome段落單詞斷詞
- 4. Joomla - 文章中的「段落權限」
- 5. Word文檔段落中斷
- 6. 從段落中查找特定單詞
- 7. 如何使用C#獲取Word文檔中的段落編號?
- 8. 很多文章的單詞列表 - 文檔 - 術語矩陣
- 9. 查找包含MS詞中的單詞的段落
- 10. 使用vba單詞更改段落中的文本
- 11. 在Word文檔中獲取段落
- 12. 如何通過單擊右鍵單擊段落中的單詞?
- 13. jQuery - 在段落中的每個單詞單獨的onClick事件
- 14. C#單詞文檔
- 15. 如何獲得一個鏈接的文檔的一部分(標題,段落,章節......)
- 16. 獲取Liferay中特定文檔/文章的詞彙分類
- 17. 獲取html文檔中的節點包含單詞
- 18. 基於段落組編號列表突出顯示MS-Word文檔中的段落?
- 19. 如何突出角2中的段落中的單詞?
- 20. 如何通過文檔章節訂購
- 21. Spring Cloud DataFlow文檔缺少章節
- 22. 如何在PHP中替換段落中的單詞?
- 23. 將數字分配到段落中的單詞在Python中
- 24. 將段落集合寫入新文檔
- 25. jQuery:在textarea段落中查找單詞並用單詞替換它
- 26. Java程序來計算段落中的相似單詞
- 27. 如何從段落中提取相同的單詞
- 28. 查找段落中的單詞,並在跨度
- 29. 用JavaScript中的隨機單詞替換段落標記內容
- 30. 如何使用PHP刪除段落中的特定單詞?
如何閱讀其餘請指定一些代碼 – Tushar 2014-09-23 07:52:08