Can I get rid of the "Marked as Final" strip in an Office document?

1.1k Views Asked by At

When a user opens a document (or in my case, presentation) that has been marked as final, a yellow strip appears at the top of the window explaining that the document has been marked as final and that editing is disabled. The strip also includes an "Edit Anyway" button.

I'd like to programmatically close this strip. Is that possible?

NOTE: I'm not doing this to try to prevent changes; I know that the user can still remove the mark-as-final setting. I just want rid of the big yellow bar.

1

There are 1 best solutions below

2
On

This is all you need to do:

oPres.Final = False 
' where oPres is a reference to the 
' presentation you want to change