How can you select a whole section for manipulation

R

Richard

Hello :

I'm struggling trying to get the syntax correct for doing the following

Select the active docment, then select a particular entire section so tha i can perform a
with selectio
font.hidden = tru

is this possible

cheers
 
J

Jezebel

You could use

ActiveDocument.Sections(n).Range.Select
Selection.Font.Hidden = TRUE

But you can skip the selection part --

ActiveDocument.Sections(n).Range.Font.Hidden = TRUE
 

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