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

HELPLINKSTATES

列挙型
基底型i4

メンバー 4

名前10進16進
CPHL_NORMAL10x1
CPHL_HOT20x2
CPHL_PRESSED30x3
CPHL_DISABLED40x4

各言語での定義

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

typedef enum HELPLINKSTATES : int {
    CPHL_NORMAL = 1,
    CPHL_HOT = 2,
    CPHL_PRESSED = 3,
    CPHL_DISABLED = 4
} HELPLINKSTATES;
public enum HELPLINKSTATES : int
{
    CPHL_NORMAL = 1,
    CPHL_HOT = 2,
    CPHL_PRESSED = 3,
    CPHL_DISABLED = 4,
}
Public Enum HELPLINKSTATES As Integer
    CPHL_NORMAL = 1
    CPHL_HOT = 2
    CPHL_PRESSED = 3
    CPHL_DISABLED = 4
End Enum
import enum

class HELPLINKSTATES(enum.IntEnum):
    CPHL_NORMAL = 1
    CPHL_HOT = 2
    CPHL_PRESSED = 3
    CPHL_DISABLED = 4
// HELPLINKSTATES
pub const CPHL_NORMAL: i32 = 1;
pub const CPHL_HOT: i32 = 2;
pub const CPHL_PRESSED: i32 = 3;
pub const CPHL_DISABLED: i32 = 4;
// HELPLINKSTATES
const (
	CPHL_NORMAL int32 = 1
	CPHL_HOT int32 = 2
	CPHL_PRESSED int32 = 3
	CPHL_DISABLED int32 = 4
)
const
  CPHL_NORMAL = 1;
  CPHL_HOT = 2;
  CPHL_PRESSED = 3;
  CPHL_DISABLED = 4;
// HELPLINKSTATES
pub const CPHL_NORMAL: i32 = 1;
pub const CPHL_HOT: i32 = 2;
pub const CPHL_PRESSED: i32 = 3;
pub const CPHL_DISABLED: i32 = 4;
const
  CPHL_NORMAL* = 1
  CPHL_HOT* = 2
  CPHL_PRESSED* = 3
  CPHL_DISABLED* = 4
enum HELPLINKSTATES : int {
    CPHL_NORMAL = 1,
    CPHL_HOT = 2,
    CPHL_PRESSED = 3,
    CPHL_DISABLED = 4,
}
#define global CPHL_NORMAL   0x1
#define global CPHL_HOT      0x2
#define global CPHL_PRESSED  0x3
#define global CPHL_DISABLED 0x4