Document.ProtectionType (Word)

Devuelve el tipo de protección para el documento especificado. Posibles valores de retorno son wdAllowOnlyComments - Permitir que sólo se agreguen comentarios al documento, wdAllowOnlyFormFields - Permitir que se agregue contenido al documento sólo mediante campos de formulario, wdAllowOnlyReading - Permitir acceso de sólo lectura al documento, wdAllowOnlyRevisions - Permitir realizar revisiones únicamente en el contenido existente, wdNoProtection - No aplicar ninguna protección al documento.


If ActiveDocument.ProtectionType = wdNoProtection Then 
 ActiveDocument.Protect Type:=wdAllowOnlyComments 
End If