如何使用互操作查找单词中一行的最后一个字符位置。使用C#代码,如何找到行的最后位置。
答案 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();
}
}