View3.DisableAutoUpdate Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Disables automatic synchronization between a form's underlying XML document and the associated view.
public:
void DisableAutoUpdate();
public void DisableAutoUpdate ();
abstract member DisableAutoUpdate : unit -> unit
Public Sub DisableAutoUpdate ()
Implements
Remarks
The views in a Microsoft InfoPath form are automatically synchronized with the data that is contained in a form's underlying XML document. You can override this by using the DisableAutoUpdate method. You may need to do this for performance reasons, such as when you are programmatically making many changes to a form's underlying XML document and you do not want the view to be refreshed until the changes are complete.
By default, views will be updated automatically when the application is idle. View synchronization can be re-enabled using the EnableAutoUpdate() method.