Word宏的短信需要在评论标签中

时间:2019-04-02 10:39:02

标签: vba ms-word word-vba

我正在使用Word宏,在Word文件中获取相应Word文件的文本消息。但是我需要在“评论”标签(右侧部分)中输入短信。

Dim MsgText As String
MsgText = "some text message"
Selection.TypeText Text:=MsgText

我需要在评论面板标签上显示短信。

1 个答案:

答案 0 :(得分:1)

也许:

With Selection
  .Comments.Add Range:=.Range, Text:=MsgText
End With