我正在使用Word宏,在Word文件中获取相应Word文件的文本消息。但是我需要在“评论”标签(右侧部分)中输入短信。
Dim MsgText As String
MsgText = "some text message"
Selection.TypeText Text:=MsgText
我需要在评论面板标签上显示短信。
答案 0 :(得分:1)
也许:
With Selection
.Comments.Add Range:=.Range, Text:=MsgText
End With