View2.ForceUpdate method

Forces synchronization between a form's underlying XML document and the associated view.

Namespace:  Microsoft.Office.Interop.InfoPath
Assembly:  Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)

Syntax

'Declaration
Sub ForceUpdate
'Usage
Dim instance As View2

instance.ForceUpdate()
void ForceUpdate()

Implements

View.ForceUpdate()

Remarks

The views in a Microsoft Office InfoPath form are automatically synchronized with the data that is contained in a form's underlying XML document. However, you can force synchronization to occur using the ForceUpdate method. This is also useful when data in a secondary data source has changed and needs to be refreshed in the view.

Automatic synchronization can be disabled using the DisableAutoUpdate method and enabled using the EnableAutoUpdate method.

Examples

In the following example, the ForceUpdate method of the ViewObject object is used to force synchronization between a form's underlying XML document and the view that it is associated with:

thisXDocument.View.ForceUpdate();

See also

Reference

View2 interface

View2 members

ForceUpdate overload

Microsoft.Office.Interop.InfoPath namespace