ホーム › System.Mmc › IconIdentifier
IconIdentifier
列挙型メンバー 7
| 名前 | 10進 | 16進 |
|---|---|---|
| Icon_None | 0 | 0x0 |
| Icon_Error | 32513 | 0x7F01 |
| Icon_Question | 32514 | 0x7F02 |
| Icon_Warning | 32515 | 0x7F03 |
| Icon_Information | 32516 | 0x7F04 |
| Icon_First | 32513 | 0x7F01 |
| Icon_Last | 32516 | 0x7F04 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum IconIdentifier : int {
Icon_None = 0,
Icon_Error = 32513,
Icon_Question = 32514,
Icon_Warning = 32515,
Icon_Information = 32516,
Icon_First = 32513,
Icon_Last = 32516
} IconIdentifier;public enum IconIdentifier : int
{
Icon_None = 0,
Icon_Error = 32513,
Icon_Question = 32514,
Icon_Warning = 32515,
Icon_Information = 32516,
Icon_First = 32513,
Icon_Last = 32516,
}Public Enum IconIdentifier As Integer
Icon_None = 0
Icon_Error = 32513
Icon_Question = 32514
Icon_Warning = 32515
Icon_Information = 32516
Icon_First = 32513
Icon_Last = 32516
End Enumimport enum
class IconIdentifier(enum.IntEnum):
Icon_None = 0
Icon_Error = 32513
Icon_Question = 32514
Icon_Warning = 32515
Icon_Information = 32516
Icon_First = 32513
Icon_Last = 32516// IconIdentifier
pub const Icon_None: i32 = 0;
pub const Icon_Error: i32 = 32513;
pub const Icon_Question: i32 = 32514;
pub const Icon_Warning: i32 = 32515;
pub const Icon_Information: i32 = 32516;
pub const Icon_First: i32 = 32513;
pub const Icon_Last: i32 = 32516;// IconIdentifier
const (
Icon_None int32 = 0
Icon_Error int32 = 32513
Icon_Question int32 = 32514
Icon_Warning int32 = 32515
Icon_Information int32 = 32516
Icon_First int32 = 32513
Icon_Last int32 = 32516
)const
Icon_None = 0;
Icon_Error = 32513;
Icon_Question = 32514;
Icon_Warning = 32515;
Icon_Information = 32516;
Icon_First = 32513;
Icon_Last = 32516;// IconIdentifier
pub const Icon_None: i32 = 0;
pub const Icon_Error: i32 = 32513;
pub const Icon_Question: i32 = 32514;
pub const Icon_Warning: i32 = 32515;
pub const Icon_Information: i32 = 32516;
pub const Icon_First: i32 = 32513;
pub const Icon_Last: i32 = 32516;const
Icon_None* = 0
Icon_Error* = 32513
Icon_Question* = 32514
Icon_Warning* = 32515
Icon_Information* = 32516
Icon_First* = 32513
Icon_Last* = 32516enum IconIdentifier : int {
Icon_None = 0,
Icon_Error = 32513,
Icon_Question = 32514,
Icon_Warning = 32515,
Icon_Information = 32516,
Icon_First = 32513,
Icon_Last = 32516,
}#define global Icon_None 0x0
#define global Icon_Error 0x7F01
#define global Icon_Question 0x7F02
#define global Icon_Warning 0x7F03
#define global Icon_Information 0x7F04
#define global Icon_First 0x7F01
#define global Icon_Last 0x7F04