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

BORDER_NOSCROLLSTATES

列挙型
基底型i4

メンバー 4

名前10進16進
LBPSN_NORMAL10x1
LBPSN_FOCUSED20x2
LBPSN_HOT30x3
LBPSN_DISABLED40x4

各言語での定義

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

typedef enum BORDER_NOSCROLLSTATES : int {
    LBPSN_NORMAL = 1,
    LBPSN_FOCUSED = 2,
    LBPSN_HOT = 3,
    LBPSN_DISABLED = 4
} BORDER_NOSCROLLSTATES;
public enum BORDER_NOSCROLLSTATES : int
{
    LBPSN_NORMAL = 1,
    LBPSN_FOCUSED = 2,
    LBPSN_HOT = 3,
    LBPSN_DISABLED = 4,
}
Public Enum BORDER_NOSCROLLSTATES As Integer
    LBPSN_NORMAL = 1
    LBPSN_FOCUSED = 2
    LBPSN_HOT = 3
    LBPSN_DISABLED = 4
End Enum
import enum

class BORDER_NOSCROLLSTATES(enum.IntEnum):
    LBPSN_NORMAL = 1
    LBPSN_FOCUSED = 2
    LBPSN_HOT = 3
    LBPSN_DISABLED = 4
// BORDER_NOSCROLLSTATES
pub const LBPSN_NORMAL: i32 = 1;
pub const LBPSN_FOCUSED: i32 = 2;
pub const LBPSN_HOT: i32 = 3;
pub const LBPSN_DISABLED: i32 = 4;
// BORDER_NOSCROLLSTATES
const (
	LBPSN_NORMAL int32 = 1
	LBPSN_FOCUSED int32 = 2
	LBPSN_HOT int32 = 3
	LBPSN_DISABLED int32 = 4
)
const
  LBPSN_NORMAL = 1;
  LBPSN_FOCUSED = 2;
  LBPSN_HOT = 3;
  LBPSN_DISABLED = 4;
// BORDER_NOSCROLLSTATES
pub const LBPSN_NORMAL: i32 = 1;
pub const LBPSN_FOCUSED: i32 = 2;
pub const LBPSN_HOT: i32 = 3;
pub const LBPSN_DISABLED: i32 = 4;
const
  LBPSN_NORMAL* = 1
  LBPSN_FOCUSED* = 2
  LBPSN_HOT* = 3
  LBPSN_DISABLED* = 4
enum BORDER_NOSCROLLSTATES : int {
    LBPSN_NORMAL = 1,
    LBPSN_FOCUSED = 2,
    LBPSN_HOT = 3,
    LBPSN_DISABLED = 4,
}
#define global LBPSN_NORMAL   0x1
#define global LBPSN_FOCUSED  0x2
#define global LBPSN_HOT      0x3
#define global LBPSN_DISABLED 0x4