ModuleDialogPage.ChangesSavedMessage 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.
When overridden in a derived class, gets a message to indicate that the changes have been saved successfully.
protected:
virtual property System::String ^ ChangesSavedMessage { System::String ^ get(); };
protected virtual string ChangesSavedMessage { get; }
member this.ChangesSavedMessage : string
Protected Overridable ReadOnly Property ChangesSavedMessage As String
Property Value
A message to indicate that the changes have been saved successfully.
Examples
The following example overrides the ChangesSavedMessage property.
protected override string ChangesSavedMessage {
get {
return "The changes have been successfully saved.";
}
}
Remarks
The returned message is a localized string from a resource file.