Share via


SaveEvent Object

InfoPath Developer Reference

An event object that is used during an OnSaveRequest event.

Version Information
 Version Added:  InfoPath 2003

Remarks

The SaveEvent object provides a number of properties and methods that can be used during a save operation from the OnSaveRequest event handler to programmatically interact with a form's underlying XML document, determine save properties, and perform the save operation.

The SaveEvent object is passed as a parameter to theOnSaveRequest event of an InfoPath form. The properties that it provides are available only during this event. This object expires when the save event expires so it may not be stored and used outside of the scope of the save event.

Example

In the following example, the ReturnStatus property and the PerformSaveOperation method of the SaveEvent object are used to perform a standard InfoPath save operation:

JScript
  function XDocument::OnSaveRequest(eventObj) 
{
    eventObj.PerformSaveOperation();
    eventObj.ReturnStatus = true;
}

See Also