| Visual Basic (Declaration) | |
|---|---|
Public Enum NotificationAction Inherits Enum | |
| C# | |
|---|---|
public enum NotificationAction : Enum | |
| Member | Description |
|---|---|
| Default | The actual value is determined at a higher level of the property resolution hierarchy. |
| None | The 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. |
| MessageBox | A MessageBox is displayed to notify the end user of the failed validation. |
| SoundOnly | The sound referenced by the Sound property is played when a validation has failed, but no other action is taken. |
| Image | An 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. |
| BalloonTip | An 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. |
