插入符号直到行尾

时间:2018-05-13 17:04:17

标签: c# ms-word com-interop

我正在为我的应用程序使用Interop.Word。现在我正在尝试插入符号(f.e。“_”)直到行尾。代码是:

while (true)
{
    if (WordApp.Selection.Text == "\r")
        break;
    else
        WordApp.Selection.TypeText("_");          
}

但问题是Range已经在段落标记¶并立即打破while。 (我也尝试了\r\n条件,但它也不起作用)所以,我需要的图片如下: enter image description here

0 个答案:

没有答案