在C#中我打开一个WORD文档,想将光标移动指定位置(比如向下移动),在WORD宏录制中光标向下移动的方法如下:
Sub Macro4()
    Selection.MoveDown Unit:=wdLine, Count:=4
End Sub在C#中我使用如下方法:            object fileName = @"F:\申请报告.doc";
            object readOnly = false;
            object isVisible = true;
            object missing = System.Reflection.Missing.Value;            ApplicationClass oWordApp = new ApplicationClass();
            Document oWordDoc = oWordApp.Documents.Open(ref fileName,
                            ref missing, ref readOnly,
                            ref missing, ref missing, ref missing,
                            ref missing, ref missing, ref missing,
                            ref missing, ref missing, ref isVisible,
                            ref missing, ref missing, ref missing, ref missing);
            oWordDoc.Activate();
            object count = 29;
            oWordApp.Selection.MoveDown(ref missing, ref count, ref missing);在C#中我想控件光标向下移动数行,或向右移动数个字符,在MoveDown(ref missing, ref count, ref missing)函数的第一个参数中,我应该向它传递一个什么样的参数呢,就像VB中的wdLine值一样(我猜想wdLine是一个枚举值,但不知道它属于哪个类型)