As long as those parts have a defined range, then yes.
A defined range can lots of things. A table cell, a bookmark, and content control, a paragraph etc.
E.g.,
With ActiveDocument.SelectContentControlsByTitle("Name" ).Item(1)
.Range.Text = UCase(.Range.Text)
.Range.Font.NameLocal = "Arial
.Range.font.Size = 12
End With
|