在MS Word的VBA中,是否有可能进行垂直选择?我的意思是:是否可以在MS Word VBA例程中模拟Shift + Alt + Selection(鼠标)键的行为?
答案 0 :(得分:0)
我在2007年Word开发人员参考-Selection.ColumnSelectMode属性中找到了
With Selection
.Collapse Direction:=wdCollapseStart
.ColumnSelectMode = True
.MoveRight Unit:=wdWord, Count:=10, Extend:=wdExtend
.MoveDown Unit:=wdLine, Count:=20, Extend:=wdExtend
.Copy
.ColumnSelectMode = False
End With
发现它正在工作。