So I want to make a specific part of a Word document read-only using VBScript. The version of Word I am using is from Office 16. How to do this manually (recorded a macro for this to see if I would get a better idea on how to do this) I found here.
I know how to lock the entire document, and know that the following works:
'Protect Document
objDoc.Protect wdAllowOnlyReading, True, "password"
I saw this question being asked (on an old MS forum), but nothing more than this. Any help with this sort of issue on an example I would appreciate.