#[repr(u32)]pub enum Icon {
Exclamation = 0,
Warning = 1,
Information = 2,
Asterisk = 3,
Question = 4,
Stop = 5,
Error = 6,
Hand = 7,
}
Expand description
The icon to be displayed in a message box.
Variants§
Exclamation = 0
An exclamation-point icon appears in the message box.
Warning = 1
An exclamation-point icon appears in the message box.
Information = 2
An icon consisting of a lowercase letter i in a circle appears in the message box.
Asterisk = 3
An icon consisting of a lowercase letter i in a circle appears in the message box.
Question = 4
A question-mark icon appears in the message box. The question-mark message icon is no longer recommended because it does not clearly represent a specific type of message and because the phrasing of a message as a question could apply to any message type. In addition, users can confuse the message symbol question mark with Help information. Therefore, do not use this question mark message symbol in your message boxes. The system continues to support its inclusion only for backward compatibility.
Stop = 5
A stop-sign icon appears in the message box.
Error = 6
A stop-sign icon appears in the message box.
Hand = 7
A stop-sign icon appears in the message box.