Win32 API 日本語リファレンス
ホームWeb.MsHtml › styleBackgroundClip

styleBackgroundClip

列挙型
基底型i4

メンバー 5

名前10進16進
styleBackgroundClipBorderBox00x0
styleBackgroundClipPaddingBox10x1
styleBackgroundClipContentBox20x2
styleBackgroundClipNotSet30x3
styleBackgroundClip_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleBackgroundClip : int {
    styleBackgroundClipBorderBox = 0,
    styleBackgroundClipPaddingBox = 1,
    styleBackgroundClipContentBox = 2,
    styleBackgroundClipNotSet = 3,
    styleBackgroundClip_Max = 2147483647
} styleBackgroundClip;
public enum styleBackgroundClip : int
{
    styleBackgroundClipBorderBox = 0,
    styleBackgroundClipPaddingBox = 1,
    styleBackgroundClipContentBox = 2,
    styleBackgroundClipNotSet = 3,
    styleBackgroundClip_Max = 2147483647,
}
Public Enum styleBackgroundClip As Integer
    styleBackgroundClipBorderBox = 0
    styleBackgroundClipPaddingBox = 1
    styleBackgroundClipContentBox = 2
    styleBackgroundClipNotSet = 3
    styleBackgroundClip_Max = 2147483647
End Enum
import enum

class styleBackgroundClip(enum.IntEnum):
    styleBackgroundClipBorderBox = 0
    styleBackgroundClipPaddingBox = 1
    styleBackgroundClipContentBox = 2
    styleBackgroundClipNotSet = 3
    styleBackgroundClip_Max = 2147483647
// styleBackgroundClip
pub const styleBackgroundClipBorderBox: i32 = 0;
pub const styleBackgroundClipPaddingBox: i32 = 1;
pub const styleBackgroundClipContentBox: i32 = 2;
pub const styleBackgroundClipNotSet: i32 = 3;
pub const styleBackgroundClip_Max: i32 = 2147483647;
// styleBackgroundClip
const (
	styleBackgroundClipBorderBox int32 = 0
	styleBackgroundClipPaddingBox int32 = 1
	styleBackgroundClipContentBox int32 = 2
	styleBackgroundClipNotSet int32 = 3
	styleBackgroundClip_Max int32 = 2147483647
)
const
  styleBackgroundClipBorderBox = 0;
  styleBackgroundClipPaddingBox = 1;
  styleBackgroundClipContentBox = 2;
  styleBackgroundClipNotSet = 3;
  styleBackgroundClip_Max = 2147483647;
// styleBackgroundClip
pub const styleBackgroundClipBorderBox: i32 = 0;
pub const styleBackgroundClipPaddingBox: i32 = 1;
pub const styleBackgroundClipContentBox: i32 = 2;
pub const styleBackgroundClipNotSet: i32 = 3;
pub const styleBackgroundClip_Max: i32 = 2147483647;
const
  styleBackgroundClipBorderBox* = 0
  styleBackgroundClipPaddingBox* = 1
  styleBackgroundClipContentBox* = 2
  styleBackgroundClipNotSet* = 3
  styleBackgroundClip_Max* = 2147483647
enum styleBackgroundClip : int {
    styleBackgroundClipBorderBox = 0,
    styleBackgroundClipPaddingBox = 1,
    styleBackgroundClipContentBox = 2,
    styleBackgroundClipNotSet = 3,
    styleBackgroundClip_Max = 2147483647,
}
#define global styleBackgroundClipBorderBox  0x0
#define global styleBackgroundClipPaddingBox 0x1
#define global styleBackgroundClipContentBox 0x2
#define global styleBackgroundClipNotSet     0x3
#define global styleBackgroundClip_Max       0x7FFFFFFF