MessageBoxOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies special display options for a message box.
This enumeration supports a bitwise combination of its member values.
public enum class MessageBoxOptions
[System.Flags]
public enum MessageBoxOptions
[<System.Flags>]
type MessageBoxOptions =
Public Enum MessageBoxOptions
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No options are set. |
DefaultDesktopOnly | 131072 | The message box is displayed on the default desktop of the interactive window station. Specifies that the message box is displayed from a .NET Windows Service application in order to notify the user of an event. |
RightAlign | 524288 | The message box text and title bar caption are right-aligned. |
RtlReading | 1048576 | All text, buttons, icons, and title bars are displayed right-to-left. |
ServiceNotification | 2097152 | The message box is displayed on the currently active desktop even if a user is not logged on to the computer. Specifies that the message box is displayed from a .NET Windows Service application in order to notify the user of an event. |
Examples
For more information, see MessageBox Sample.