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
 
Top