Version

NotificationAction Enumeration

Constants which define the kind of action that is taken to notify the end user that a validation session has failed.
Syntax
'Declaration
 
Public Enum NotificationAction 
   Inherits System.Enum
public enum NotificationAction : System.Enum 
Members
MemberDescription
BalloonTipAn UltraToolTipManager is used to display a balloon-style tooltip to notify the end user of the failed validation. The values of the Caption, Text, and Image properties of the associated NotificationSettings instance are used for the tooltip's caption, text, and image, respectively.
DefaultThe actual value is determined at a higher level of the property resolution hierarchy.
ImageAn image is displayed next to the editor or control to provide a visual cue to the end user which signifies that validation has failed. When the end user hovers the cursor over the image, a tooltip is displayed with the values of the Caption and Text properties of the associated NotificationSettings instance.
MessageBoxA MessageBox is displayed to notify the end user of the failed validation.
NoneThe Validating event fires as it does for all settings, but no notification is issued by the component. This setting can be used to prevent notification altogether, or to provide a customized notification, such as an interactive dialog.
SoundOnlyThe sound referenced by the Sound property is played when a validation has failed, but no other action is taken.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also