Project.RemoveFileProperties Property

Project Developer Reference

True if Microsoft Office Project 2007 removes user information from revisions and the Properties dialog box upon saving a document. Read/write Boolean.

Syntax

expression.RemoveFileProperties

expression   A variable that represents a Project object.

Return Value
Boolean

Example
The following example sets the current document to remove personal information from File Properties in the document the next time the user saves it.

Visual Basic for Applications
  Sub RemoveFileProperties()
    ThisDocument.RemoveFileProperties = True
End Sub

See Also