luvlogic
luvlogic

Reputation: 103

How to add gradient to font in MS Word using VBA macro

How to add gradient to font in MS Word using VBA macro. I am able to do it on the front end by going to: Home > Font > Font Color > Gradient

I wish to do this using VBA macro.

Upvotes: 0

Views: 144

Answers (1)

Timothy Rylatt
Timothy Rylatt

Reputation: 7850

You need to use Font.Fill which will give you access to the FillFormat object.

Read the documentation on that to find the specific methods and properties you need.

Upvotes: 1

Related Questions