R
Roderick O'Regan
I have a WordArt graphic in each section header of a document which I
want to sequentially delete.
There are other graphics in each header and therefore I need to be
specific in what I choose.
I've got the following piece of coding from the VBA help and trying to
adapt it to do this:
Set myDocument = ActiveDocument
For Each s In myDocument.Shapes
If s.Type = msoTextEffect Then
s.TextEffect.PresetTextEffect = msoTextEffect1
End If
Next
Naturally, I would have to go into the header in the first section,
delete it then move on to the next section, and so on.
This I think I can do. Its the identifying and deleting an object as
being WordArt in the header which I cannot grasp.
Can anyone help, please?
Roderick O'Regan
want to sequentially delete.
There are other graphics in each header and therefore I need to be
specific in what I choose.
I've got the following piece of coding from the VBA help and trying to
adapt it to do this:
Set myDocument = ActiveDocument
For Each s In myDocument.Shapes
If s.Type = msoTextEffect Then
s.TextEffect.PresetTextEffect = msoTextEffect1
End If
Next
Naturally, I would have to go into the header in the first section,
delete it then move on to the next section, and so on.
This I think I can do. Its the identifying and deleting an object as
being WordArt in the header which I cannot grasp.
Can anyone help, please?
Roderick O'Regan