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

EDITBORDER_NOSCROLLSTATES

列挙型
基底型i4

メンバー 4

名前10進16進
EPSN_NORMAL10x1
EPSN_HOT20x2
EPSN_FOCUSED30x3
EPSN_DISABLED40x4

各言語での定義

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

typedef enum EDITBORDER_NOSCROLLSTATES : int {
    EPSN_NORMAL = 1,
    EPSN_HOT = 2,
    EPSN_FOCUSED = 3,
    EPSN_DISABLED = 4
} EDITBORDER_NOSCROLLSTATES;
public enum EDITBORDER_NOSCROLLSTATES : int
{
    EPSN_NORMAL = 1,
    EPSN_HOT = 2,
    EPSN_FOCUSED = 3,
    EPSN_DISABLED = 4,
}
Public Enum EDITBORDER_NOSCROLLSTATES As Integer
    EPSN_NORMAL = 1
    EPSN_HOT = 2
    EPSN_FOCUSED = 3
    EPSN_DISABLED = 4
End Enum
import enum

class EDITBORDER_NOSCROLLSTATES(enum.IntEnum):
    EPSN_NORMAL = 1
    EPSN_HOT = 2
    EPSN_FOCUSED = 3
    EPSN_DISABLED = 4
// EDITBORDER_NOSCROLLSTATES
pub const EPSN_NORMAL: i32 = 1;
pub const EPSN_HOT: i32 = 2;
pub const EPSN_FOCUSED: i32 = 3;
pub const EPSN_DISABLED: i32 = 4;
// EDITBORDER_NOSCROLLSTATES
const (
	EPSN_NORMAL int32 = 1
	EPSN_HOT int32 = 2
	EPSN_FOCUSED int32 = 3
	EPSN_DISABLED int32 = 4
)
const
  EPSN_NORMAL = 1;
  EPSN_HOT = 2;
  EPSN_FOCUSED = 3;
  EPSN_DISABLED = 4;
// EDITBORDER_NOSCROLLSTATES
pub const EPSN_NORMAL: i32 = 1;
pub const EPSN_HOT: i32 = 2;
pub const EPSN_FOCUSED: i32 = 3;
pub const EPSN_DISABLED: i32 = 4;
const
  EPSN_NORMAL* = 1
  EPSN_HOT* = 2
  EPSN_FOCUSED* = 3
  EPSN_DISABLED* = 4
enum EDITBORDER_NOSCROLLSTATES : int {
    EPSN_NORMAL = 1,
    EPSN_HOT = 2,
    EPSN_FOCUSED = 3,
    EPSN_DISABLED = 4,
}
#define global EPSN_NORMAL   0x1
#define global EPSN_HOT      0x2
#define global EPSN_FOCUSED  0x3
#define global EPSN_DISABLED 0x4