_XDocument2.IsNew Property

Definition

Gets a value that indicates whether a newly created 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.

Applies to