A family of Microsoft word processing software products for creating web, email, and print documents.
Many of the document properties inserted with UI are inserted as content controls (not fields). You can convert content controls to text with VBA:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey
Dim oCC As ContentControl
For Each oCC In ActiveDocument.ContentControls
oCC.Delete
Next oCC
End Sub
or you can use:
http://gregmaxey.mvps.org/word_tip_pages/content_control_tools.html