BANNER_NOTIFICATION_EVENT
列挙型メンバー 6
| 名前 | 10進 | 16進 |
|---|---|---|
| BNE_Rendered | 0 | 0x0 |
| BNE_Hovered | 1 | 0x1 |
| BNE_Closed | 2 | 0x2 |
| BNE_Dismissed | 3 | 0x3 |
| BNE_Button1Clicked | 4 | 0x4 |
| BNE_Button2Clicked | 5 | 0x5 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum BANNER_NOTIFICATION_EVENT : int {
BNE_Rendered = 0,
BNE_Hovered = 1,
BNE_Closed = 2,
BNE_Dismissed = 3,
BNE_Button1Clicked = 4,
BNE_Button2Clicked = 5
} BANNER_NOTIFICATION_EVENT;public enum BANNER_NOTIFICATION_EVENT : int
{
BNE_Rendered = 0,
BNE_Hovered = 1,
BNE_Closed = 2,
BNE_Dismissed = 3,
BNE_Button1Clicked = 4,
BNE_Button2Clicked = 5,
}Public Enum BANNER_NOTIFICATION_EVENT As Integer
BNE_Rendered = 0
BNE_Hovered = 1
BNE_Closed = 2
BNE_Dismissed = 3
BNE_Button1Clicked = 4
BNE_Button2Clicked = 5
End Enumimport enum
class BANNER_NOTIFICATION_EVENT(enum.IntEnum):
BNE_Rendered = 0
BNE_Hovered = 1
BNE_Closed = 2
BNE_Dismissed = 3
BNE_Button1Clicked = 4
BNE_Button2Clicked = 5// BANNER_NOTIFICATION_EVENT
pub const BNE_Rendered: i32 = 0;
pub const BNE_Hovered: i32 = 1;
pub const BNE_Closed: i32 = 2;
pub const BNE_Dismissed: i32 = 3;
pub const BNE_Button1Clicked: i32 = 4;
pub const BNE_Button2Clicked: i32 = 5;// BANNER_NOTIFICATION_EVENT
const (
BNE_Rendered int32 = 0
BNE_Hovered int32 = 1
BNE_Closed int32 = 2
BNE_Dismissed int32 = 3
BNE_Button1Clicked int32 = 4
BNE_Button2Clicked int32 = 5
)const
BNE_Rendered = 0;
BNE_Hovered = 1;
BNE_Closed = 2;
BNE_Dismissed = 3;
BNE_Button1Clicked = 4;
BNE_Button2Clicked = 5;// BANNER_NOTIFICATION_EVENT
pub const BNE_Rendered: i32 = 0;
pub const BNE_Hovered: i32 = 1;
pub const BNE_Closed: i32 = 2;
pub const BNE_Dismissed: i32 = 3;
pub const BNE_Button1Clicked: i32 = 4;
pub const BNE_Button2Clicked: i32 = 5;const
BNE_Rendered* = 0
BNE_Hovered* = 1
BNE_Closed* = 2
BNE_Dismissed* = 3
BNE_Button1Clicked* = 4
BNE_Button2Clicked* = 5enum BANNER_NOTIFICATION_EVENT : int {
BNE_Rendered = 0,
BNE_Hovered = 1,
BNE_Closed = 2,
BNE_Dismissed = 3,
BNE_Button1Clicked = 4,
BNE_Button2Clicked = 5,
}#define global BNE_Rendered 0x0
#define global BNE_Hovered 0x1
#define global BNE_Closed 0x2
#define global BNE_Dismissed 0x3
#define global BNE_Button1Clicked 0x4
#define global BNE_Button2Clicked 0x5