Win32 API 日本語リファレンス
ホームUI.Shell › BANNER_NOTIFICATION_EVENT

BANNER_NOTIFICATION_EVENT

列挙型
基底型i4

メンバー 6

名前10進16進
BNE_Rendered00x0
BNE_Hovered10x1
BNE_Closed20x2
BNE_Dismissed30x3
BNE_Button1Clicked40x4
BNE_Button2Clicked50x5

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 5
enum 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