ModulePropertiesPage.HasChanges 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 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; }
}