Options.LocalNetworkFile Property (Word)
True if Microsoft Word creates a local copy of a file on the user's computer when editing a file stored on a network server. Read/write Boolean.
Syntax
expression .LocalNetworkFile
expression An expression that returns an Options object.
Example
This example instructs Word to not make a local copy of files stored on a server.
Sub LocalFile()
Application.Options.LocalNetworkFile = False
End Sub