Options.StoreRSIDOnSave property (Word)

True for Microsoft Word to assign a random number to changes in a document, each time a document is saved, to facilitate comparing and merging documents. Read/write Boolean.

Syntax

expression. StoreRSIDOnSave

expression A variable that represents a 'Options' object.

Remarks

Word stores the random numbers in a table and updates the table after each save. The default for the StoreRSIDOnSave property is True. However, RSID information is not saved for HTML documents.

Use the RemovePersonalInformation property if you want to remove information related to authors and reviewers of a document.

Example

This example turns off storing a random number when saving documents.

Sub SaveRandomNumber() 
 Application.Options.StoreRSIDOnSave = False 
End Sub

See also

Options Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.