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

LABELSTATES

列挙型
基底型i4

メンバー 4

名前10進16進
FLS_NORMAL10x1
FLS_SELECTED20x2
FLS_EMPHASIZED30x3
FLS_DISABLED40x4

各言語での定義

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

typedef enum LABELSTATES : int {
    FLS_NORMAL = 1,
    FLS_SELECTED = 2,
    FLS_EMPHASIZED = 3,
    FLS_DISABLED = 4
} LABELSTATES;
public enum LABELSTATES : int
{
    FLS_NORMAL = 1,
    FLS_SELECTED = 2,
    FLS_EMPHASIZED = 3,
    FLS_DISABLED = 4,
}
Public Enum LABELSTATES As Integer
    FLS_NORMAL = 1
    FLS_SELECTED = 2
    FLS_EMPHASIZED = 3
    FLS_DISABLED = 4
End Enum
import enum

class LABELSTATES(enum.IntEnum):
    FLS_NORMAL = 1
    FLS_SELECTED = 2
    FLS_EMPHASIZED = 3
    FLS_DISABLED = 4
// LABELSTATES
pub const FLS_NORMAL: i32 = 1;
pub const FLS_SELECTED: i32 = 2;
pub const FLS_EMPHASIZED: i32 = 3;
pub const FLS_DISABLED: i32 = 4;
// LABELSTATES
const (
	FLS_NORMAL int32 = 1
	FLS_SELECTED int32 = 2
	FLS_EMPHASIZED int32 = 3
	FLS_DISABLED int32 = 4
)
const
  FLS_NORMAL = 1;
  FLS_SELECTED = 2;
  FLS_EMPHASIZED = 3;
  FLS_DISABLED = 4;
// LABELSTATES
pub const FLS_NORMAL: i32 = 1;
pub const FLS_SELECTED: i32 = 2;
pub const FLS_EMPHASIZED: i32 = 3;
pub const FLS_DISABLED: i32 = 4;
const
  FLS_NORMAL* = 1
  FLS_SELECTED* = 2
  FLS_EMPHASIZED* = 3
  FLS_DISABLED* = 4
enum LABELSTATES : int {
    FLS_NORMAL = 1,
    FLS_SELECTED = 2,
    FLS_EMPHASIZED = 3,
    FLS_DISABLED = 4,
}
#define global FLS_NORMAL     0x1
#define global FLS_SELECTED   0x2
#define global FLS_EMPHASIZED 0x3
#define global FLS_DISABLED   0x4