ModulePropertiesPage.HasChanges Property

Definition

Gets a value indicating whether changes have been made to the data.

protected:
 virtual property bool HasChanges { bool get(); };
protected override bool HasChanges { get; }
member this.HasChanges : bool
Protected Overrides ReadOnly Property HasChanges As Boolean

Property Value

true if changes have been made; otherwise, false.

Examples

The following example implements the Microsoft.Web.Management.Client.Win32.ModuleDialogPage.CanApplyChanges property to get the value of the HasChanges property.

protected override bool CanApplyChanges {
    get { return HasChanges; }
}

Applies to