Share via


XDocument.IsNew Property

InfoPath Developer Reference

A read-only property that returns a Boolean value that indicates whether a newly created Microsoft Office InfoPath 2007 form has been saved. Read-only

Version Information
 Version Added:  InfoPath 2003

Syntax

expression.IsNew

expression   An expression that returns a XDocument object.

Return Value
Boolean

Remarks

If the IsNew property is True, data in the form's underlying XML document has not been saved since the form was initially created. If False, the data in the new form's underlying XML document has been saved.

Security Level 2: 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.

Example

In the following example, the IsNew property of the XDocument object is used to determine whether the data in a new form has been saved:

JScript
  if (XDocument.IsNew)
   XDocument.UI.Alert("Please save your form.");
else
   return;

See Also