如何使用Word VBA在评论中添加项目符号?

时间:2016-09-02 12:08:06

标签: vba word-vba

我想在第二行添加项目符号。

Public Sub AddComment()
  Selection.Comments.Add Range:=Selection.Range
  With Selection
    .Font.Bold = True
    .TypeText "Test Bold: Bold Text"
    .TypeText "This text has bullet" & vbNewLine
    .TypeText "This is simple text"
  End With 
End Sub

上面的代码在第一行添加了Font.Bold样式。我想只在第二行添加子弹。在第三行,不应该有子弹。 有人可以建议我吗?

0 个答案:

没有答案