c# – 如何找到Word段落的页码?

c# – 如何找到Word段落的页码?,第1张

概述我试图解析一个Word文档,我正在寻找的信息应该位于第一页.有没有办法得到一个段落页码? foreach (Word.Paragraph p in document.Paragraphs){ // pageNo = ..... // if(pageNo == 1 && p.Range.Text.StartsWith("This")) { // /* do so 我试图解析一个Word文档,我正在寻找的信息应该位于第一页.有没有办法得到一个段落的页码?
foreach (Word.Paragraph p in document.Paragraphs){    // pageNo = .....    // if(pageNo == 1 && p.Range.Text.StartsWith("This")) {     //     /* do some processing with the paragraph */     // }}
解决方法 从这个帖子 VSTO 2007: how do I determine the page and paragraph number of a Range?我可以看到你可以得到一个范围的页数
/// <summary>    /// Determines the pagenumber of a range.    /// </summary>    /// <param name="range">The range to be located.</param>    /// <returns></returns>    private static int GetPageNumberOfRange(Word.Range range)    {        return (int)range.get_information(Word.Wdinformation.wdActiveEndPageNumber);    }

从这个帖子,how to detect Empty paragraph in Word Document using Microsoft.Office.Interop.Word in C#4.0?我确定你可以找到范围从段落!

for each p in Doc.Content.Paragraphs    if (p.Range.End - p.Range.Start) > 1 then (The paragraph is empty)Next

你应该把你的解决方案结合在一起,我敢打赌!

总结

以上是内存溢出为你收集整理的c# – 如何找到Word段落的页码?全部内容,希望文章能够帮你解决c# – 如何找到Word段落的页码?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1238764.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存