ModuleDialogPage.ChangesSavedMessage Property

Definition

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.

Applies to