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

TASKLINKSTATES

列挙型
基底型i4

メンバー 5

名前10進16進
CPTL_NORMAL10x1
CPTL_HOT20x2
CPTL_PRESSED30x3
CPTL_DISABLED40x4
CPTL_PAGE50x5

各言語での定義

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

typedef enum TASKLINKSTATES : int {
    CPTL_NORMAL = 1,
    CPTL_HOT = 2,
    CPTL_PRESSED = 3,
    CPTL_DISABLED = 4,
    CPTL_PAGE = 5
} TASKLINKSTATES;
public enum TASKLINKSTATES : int
{
    CPTL_NORMAL = 1,
    CPTL_HOT = 2,
    CPTL_PRESSED = 3,
    CPTL_DISABLED = 4,
    CPTL_PAGE = 5,
}
Public Enum TASKLINKSTATES As Integer
    CPTL_NORMAL = 1
    CPTL_HOT = 2
    CPTL_PRESSED = 3
    CPTL_DISABLED = 4
    CPTL_PAGE = 5
End Enum
import enum

class TASKLINKSTATES(enum.IntEnum):
    CPTL_NORMAL = 1
    CPTL_HOT = 2
    CPTL_PRESSED = 3
    CPTL_DISABLED = 4
    CPTL_PAGE = 5
// TASKLINKSTATES
pub const CPTL_NORMAL: i32 = 1;
pub const CPTL_HOT: i32 = 2;
pub const CPTL_PRESSED: i32 = 3;
pub const CPTL_DISABLED: i32 = 4;
pub const CPTL_PAGE: i32 = 5;
// TASKLINKSTATES
const (
	CPTL_NORMAL int32 = 1
	CPTL_HOT int32 = 2
	CPTL_PRESSED int32 = 3
	CPTL_DISABLED int32 = 4
	CPTL_PAGE int32 = 5
)
const
  CPTL_NORMAL = 1;
  CPTL_HOT = 2;
  CPTL_PRESSED = 3;
  CPTL_DISABLED = 4;
  CPTL_PAGE = 5;
// TASKLINKSTATES
pub const CPTL_NORMAL: i32 = 1;
pub const CPTL_HOT: i32 = 2;
pub const CPTL_PRESSED: i32 = 3;
pub const CPTL_DISABLED: i32 = 4;
pub const CPTL_PAGE: i32 = 5;
const
  CPTL_NORMAL* = 1
  CPTL_HOT* = 2
  CPTL_PRESSED* = 3
  CPTL_DISABLED* = 4
  CPTL_PAGE* = 5
enum TASKLINKSTATES : int {
    CPTL_NORMAL = 1,
    CPTL_HOT = 2,
    CPTL_PRESSED = 3,
    CPTL_DISABLED = 4,
    CPTL_PAGE = 5,
}
#define global CPTL_NORMAL   0x1
#define global CPTL_HOT      0x2
#define global CPTL_PRESSED  0x3
#define global CPTL_DISABLED 0x4
#define global CPTL_PAGE     0x5