2
我怎麼可以插入通過COM選詞用的TypeText換行符
oWord.Selection.TypeText("\r\n")
斷行,我不希望使用oWord.Selection.TypeParagraph左右。它必須是TypeText,它必須是一個字符串。
我怎麼可以插入通過COM選詞用的TypeText換行符
oWord.Selection.TypeText("\r\n")
斷行,我不希望使用oWord.Selection.TypeParagraph左右。它必須是TypeText,它必須是一個字符串。
我得到了它
oWord.Selection.TypeText("Hello\r\nWorld".Replace("\r\n", char.ConvertFromUtf32(11)));