如何使用c#使用interop查找单词中一行的最后一个字符位置

时间:2015-09-07 10:28:34

标签: c# .net ms-word interop office-interop

如何使用互操作查找单词中一行的最后一个字符位置。使用C#代码,如何找到行的最后位置。

1 个答案:

答案 0 :(得分:2)

class Program
{
    static void Main(string[] args)
    {
        Application application = new Application();
        Document document = application.Documents.Open("D:\\test.doc");

        if (document.Paragraphs.Count > 0)
        {
            var paragraph = document.Paragraphs.First;
            var lastCharPos = paragraph.Range.Sentences.First.End-1;
            Console.WriteLine(lastCharPos);
        }
        Console.ReadLine();
    }
}