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

ActiveEnd

列挙型
基底型i4

メンバー 3

名前10進16進
ActiveEnd_None00x0
ActiveEnd_Start10x1
ActiveEnd_End20x2

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum ActiveEnd : int {
    ActiveEnd_None = 0,
    ActiveEnd_Start = 1,
    ActiveEnd_End = 2
} ActiveEnd;
public enum ActiveEnd : int
{
    ActiveEnd_None = 0,
    ActiveEnd_Start = 1,
    ActiveEnd_End = 2,
}
Public Enum ActiveEnd As Integer
    ActiveEnd_None = 0
    ActiveEnd_Start = 1
    ActiveEnd_End = 2
End Enum
import enum

class ActiveEnd(enum.IntEnum):
    ActiveEnd_None = 0
    ActiveEnd_Start = 1
    ActiveEnd_End = 2
// ActiveEnd
pub const ActiveEnd_None: i32 = 0;
pub const ActiveEnd_Start: i32 = 1;
pub const ActiveEnd_End: i32 = 2;
// ActiveEnd
const (
	ActiveEnd_None int32 = 0
	ActiveEnd_Start int32 = 1
	ActiveEnd_End int32 = 2
)
const
  ActiveEnd_None = 0;
  ActiveEnd_Start = 1;
  ActiveEnd_End = 2;
// ActiveEnd
pub const ActiveEnd_None: i32 = 0;
pub const ActiveEnd_Start: i32 = 1;
pub const ActiveEnd_End: i32 = 2;
const
  ActiveEnd_None* = 0
  ActiveEnd_Start* = 1
  ActiveEnd_End* = 2
enum ActiveEnd : int {
    ActiveEnd_None = 0,
    ActiveEnd_Start = 1,
    ActiveEnd_End = 2,
}
#define global ActiveEnd_None  0x0
#define global ActiveEnd_Start 0x1
#define global ActiveEnd_End   0x2