about extra '\r'

Ç

ÇØÈðÃ÷

private void Application_DocumentBeforeSave(Word.Document Doc, ref bool SaveAsUI, ref bool Cancel)
{
Doc.Content.Text = "hi\r";
}

but this command make me confuse,for the monitor shows that
Doc.Content.Text = "hi\r\r";

even if i trimend not affect it

who can tell me how to resolve it

thanx
 
Top