Occurs when the host application is finished with data validation.

Namespace: BlueCieloECM.InnoCielo.Meridian.Design
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public event EventHandler DataValidated
Visual Basic
Public Event DataValidated As EventHandler
Visual C++
public:
 event EventHandler^ DataValidated {
	void add (EventHandler^ value);
	void remove (EventHandler^ value);
}

Remarks

Use the DataValidated event to save the values on the page for the selected object.

If any page cancels the DataValidating event, then the event DataValidated will not occur and the pages will remain in Edit mode for the user to correct the problem.

The event is a replacement for the ApplyChanges method of the VB6 Extension Designer object.

See Also