Gets or sets a value indicating whether the page handles a validation failure (if the event is canceled).

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 bool HandleError { get; set; }
Visual Basic
Public Property HandleError As Boolean
	Get
	Set
Visual C++
public:
property bool HandleError {
	bool get ();
	void set (bool value);
}

Remarks

When the event is canceled, BC Meridian will normally display a message to the user. In most cases a more useful message can be generated by the page itself. To avoid BC Meridian showing the generic message, this property should be set to trueTruetruetrue (True in Visual Basic). Setting this property for a wizard page does not have any effect.

See Also