Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个.docm带有用户表单的文档。在用户表单上,我有一个按钮,需要在文档中最后一个已知的光标位置插入一些东西(一些文本,作为开始)。为此,我想创建一个范围。
.docm
我怎样才能得到这个范围的起始位置?
Selection
Selection.Range
Range.Start
Range
如果将这三个结合起来,您将获得光标位置(如果您选择了文本,则为选择的开始):
Selection.Range.Start
如果您只想在光标位置输入文本,请执行以下操作:
Selection.TypeText "Test"