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

USERTILEPARTS

列挙型
基底型i4

メンバー 2

名前10進16進
UTP_STROKEBACKGROUND10x1
UTP_HOVERBACKGROUND20x2

各言語での定義

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

typedef enum USERTILEPARTS : int {
    UTP_STROKEBACKGROUND = 1,
    UTP_HOVERBACKGROUND = 2
} USERTILEPARTS;
public enum USERTILEPARTS : int
{
    UTP_STROKEBACKGROUND = 1,
    UTP_HOVERBACKGROUND = 2,
}
Public Enum USERTILEPARTS As Integer
    UTP_STROKEBACKGROUND = 1
    UTP_HOVERBACKGROUND = 2
End Enum
import enum

class USERTILEPARTS(enum.IntEnum):
    UTP_STROKEBACKGROUND = 1
    UTP_HOVERBACKGROUND = 2
// USERTILEPARTS
pub const UTP_STROKEBACKGROUND: i32 = 1;
pub const UTP_HOVERBACKGROUND: i32 = 2;
// USERTILEPARTS
const (
	UTP_STROKEBACKGROUND int32 = 1
	UTP_HOVERBACKGROUND int32 = 2
)
const
  UTP_STROKEBACKGROUND = 1;
  UTP_HOVERBACKGROUND = 2;
// USERTILEPARTS
pub const UTP_STROKEBACKGROUND: i32 = 1;
pub const UTP_HOVERBACKGROUND: i32 = 2;
const
  UTP_STROKEBACKGROUND* = 1
  UTP_HOVERBACKGROUND* = 2
enum USERTILEPARTS : int {
    UTP_STROKEBACKGROUND = 1,
    UTP_HOVERBACKGROUND = 2,
}
#define global UTP_STROKEBACKGROUND 0x1
#define global UTP_HOVERBACKGROUND  0x2