_XDocument4.IsNew Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether a newly created Microsoft InfoPath form has been saved.
public:
property bool IsNew { bool get(); };
public bool IsNew { get; }
member this.IsNew : bool
Public ReadOnly Property IsNew As Boolean
Property Value
Implements
Examples
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:
if (thisXDocument.<span class="label">IsNew</span>)
{
thisXDocument.UI.Alert("Please save your form.");
}
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:
if (thisXDocument.<span class="label">IsNew</span>)
{
thisXDocument.UI.Alert("Please save your form.");
}
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.
Important: 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.