Infragistics(R) NetAdvantage(R) Windows Forms
ValidationTrigger Enumeration
See Also  E-mail your feedback on this topic.
Infragistics.Win.Misc Namespace : ValidationTrigger Enumeration

Constants which define the action that triggers validation.

Syntax

Visual Basic (Declaration) 
Public Enum ValidationTrigger 
   Inherits System.Enum
C# 
public enum ValidationTrigger : System.Enum 

Members

MemberDescription
Default The actual value is determined at a higher level of the property resolution hierarchy.
OnPropertyValueChangedIn the case where the entity being validated is a control, validation is triggered by the event that is fired when the value of the property referenced by the Validator's ValidationPropertyName property has changed. When the entity being validated is an embeddable editor host (for example, an UltraGridCell), validation is triggered by the editor's ValueChanged event.
OnValidatingIn the case where the entity being validated is a control, validation is triggered by the control’s Validating event; when the entity being validated is an embeddable editor host (for example, an UltraGridCell), validation is triggered by the editor's BeforeExitEditMode event.
ProgrammaticValidation is only triggered programmatically, i.e., by calling the Validate method.

See Also