我想在第二行添加项目符号。
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样式。我想只在第二行添加子弹。在第三行,不应该有子弹。 有人可以建议我吗?