Set wordApp = Word.Application
With wordApp.Selection
.MoveDown Unit:=wdline, Count:=4
.Font.Bold = False
.Font.Name = "黑体"
.Font.Size = 12
.TypeText "中学学历公证书"
.ParagraphFormat.Alignment = wdAlignParagraphCenter
.MoveDown Unit:=wdParagraph, Count:=10
.Font.Bold = False
.Font.Name = "宋体"
.Font.Size = 24
.TypeText "大学学历公证书"
.ParagraphFormat.Alignment = wdAlignParagraphLeft
end With
为什么用MoveDown 移动的时候上面的Count值修改时为什么没有变化。
我想控制光标的移动该怎么办?恳请大家帮助!