DocReturnEventObject interface

An event object that is used during a Microsoft InfoPath load or submission event.

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

Syntax

'Declaration
<GuidAttribute("096CD676-0786-11D1-95FA-0080C78EE3BB")> _
Public Interface DocReturnEventObject _
    Inherits DocReturnEvent
'Usage
Dim instance As DocReturnEventObject
[GuidAttribute("096CD676-0786-11D1-95FA-0080C78EE3BB")]
public interface DocReturnEventObject : DocReturnEvent

Remarks

This type is a wrapper for a coclass that is required by managed code for COM interoperability. Use this type to access the members of the COM interface implemented by this coclass. For information about the COM interface, including a link to descriptions of its members, seeDocReturnEvent.

The DocReturnEvent object provides the XDocument property that can be used within a load or submission event to programmatically interact with the data in a form's underlying XML document. It also provides the ReturnStatus property that is used to specify whether the event is successful.

The DocReturnEvent object is passed as a parameter to the OnLoad event and the OnSubmitRequest event of an InfoPath form. The properties that it provides are available only during these events.

Examples

In the following example, the XDocument property of the DocReturnEvent object is used to display the source XML of a form's underlying XML document using the DOM property of the XDocument object:

public void OnLoad(DocReturnEvent e)
{
 thisXDocument.UI.Alert("The source XML: " + e.XDocument.DOM.xml);
 e.ReturnStatus = true;
}

See also

Reference

DocReturnEventObject members

Microsoft.Office.Interop.InfoPath namespace