View.EnableAutoUpdate Method
Enables automatic synchronization between a form's underlying XML document and the associated view.
Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in Microsoft.Office.InfoPath.dll)
Syntax
'Declaration
Public MustOverride Sub EnableAutoUpdate
'Usage
Dim instance As View
instance.EnableAutoUpdate()
public abstract void EnableAutoUpdate()
Exceptions
Exception | Condition |
---|---|
InvalidOperationException | The EnableAutoUpdate method was called from an event handler for the Loading event. |
Remarks
The views in a form are automatically synchronized with the data that is contained in a form's underlying XML document. However, this can be overridden using the DisableAutoUpdate method. To re-enable synchronization, use the EnableAutoUpdate method.
This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.
This type or member can be accessed only from code running in forms opened in Microsoft InfoPath Filler.
Examples
In the following example, the EnableAutoUpdate method of the View class is used to enable synchronization between a form's underlying XML document and the view that it is associated with.
this.CurrentView.EnableAutoUpdate();
Me.CurrentView.EnableAutoUpdate()