What is the syntax to set a comment's font?

C

Charlie Mac

I am using this code :

Selection.Comments.Add Range:=Selection.Range, Text:="Testing"

to add comments. What is the syntax to set the font (e.g. "Arial")
for this comment? Thanks.
 
T

Tony Jollans

Something like this should do it ...

Set NewComment = Selection.Comments.Add(Range:=Selection.Range)
With NewComment.Range
.Text = "Hello"
.Font.Name = "algerian"
End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top