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

styleBackgroundRepeat

列挙型
基底型i4

メンバー 6

名前10進16進
styleBackgroundRepeatRepeat00x0
styleBackgroundRepeatRepeatX10x1
styleBackgroundRepeatRepeatY20x2
styleBackgroundRepeatNoRepeat30x3
styleBackgroundRepeatNotSet40x4
styleBackgroundRepeat_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleBackgroundRepeat : int {
    styleBackgroundRepeatRepeat = 0,
    styleBackgroundRepeatRepeatX = 1,
    styleBackgroundRepeatRepeatY = 2,
    styleBackgroundRepeatNoRepeat = 3,
    styleBackgroundRepeatNotSet = 4,
    styleBackgroundRepeat_Max = 2147483647
} styleBackgroundRepeat;
public enum styleBackgroundRepeat : int
{
    styleBackgroundRepeatRepeat = 0,
    styleBackgroundRepeatRepeatX = 1,
    styleBackgroundRepeatRepeatY = 2,
    styleBackgroundRepeatNoRepeat = 3,
    styleBackgroundRepeatNotSet = 4,
    styleBackgroundRepeat_Max = 2147483647,
}
Public Enum styleBackgroundRepeat As Integer
    styleBackgroundRepeatRepeat = 0
    styleBackgroundRepeatRepeatX = 1
    styleBackgroundRepeatRepeatY = 2
    styleBackgroundRepeatNoRepeat = 3
    styleBackgroundRepeatNotSet = 4
    styleBackgroundRepeat_Max = 2147483647
End Enum
import enum

class styleBackgroundRepeat(enum.IntEnum):
    styleBackgroundRepeatRepeat = 0
    styleBackgroundRepeatRepeatX = 1
    styleBackgroundRepeatRepeatY = 2
    styleBackgroundRepeatNoRepeat = 3
    styleBackgroundRepeatNotSet = 4
    styleBackgroundRepeat_Max = 2147483647
// styleBackgroundRepeat
pub const styleBackgroundRepeatRepeat: i32 = 0;
pub const styleBackgroundRepeatRepeatX: i32 = 1;
pub const styleBackgroundRepeatRepeatY: i32 = 2;
pub const styleBackgroundRepeatNoRepeat: i32 = 3;
pub const styleBackgroundRepeatNotSet: i32 = 4;
pub const styleBackgroundRepeat_Max: i32 = 2147483647;
// styleBackgroundRepeat
const (
	styleBackgroundRepeatRepeat int32 = 0
	styleBackgroundRepeatRepeatX int32 = 1
	styleBackgroundRepeatRepeatY int32 = 2
	styleBackgroundRepeatNoRepeat int32 = 3
	styleBackgroundRepeatNotSet int32 = 4
	styleBackgroundRepeat_Max int32 = 2147483647
)
const
  styleBackgroundRepeatRepeat = 0;
  styleBackgroundRepeatRepeatX = 1;
  styleBackgroundRepeatRepeatY = 2;
  styleBackgroundRepeatNoRepeat = 3;
  styleBackgroundRepeatNotSet = 4;
  styleBackgroundRepeat_Max = 2147483647;
// styleBackgroundRepeat
pub const styleBackgroundRepeatRepeat: i32 = 0;
pub const styleBackgroundRepeatRepeatX: i32 = 1;
pub const styleBackgroundRepeatRepeatY: i32 = 2;
pub const styleBackgroundRepeatNoRepeat: i32 = 3;
pub const styleBackgroundRepeatNotSet: i32 = 4;
pub const styleBackgroundRepeat_Max: i32 = 2147483647;
const
  styleBackgroundRepeatRepeat* = 0
  styleBackgroundRepeatRepeatX* = 1
  styleBackgroundRepeatRepeatY* = 2
  styleBackgroundRepeatNoRepeat* = 3
  styleBackgroundRepeatNotSet* = 4
  styleBackgroundRepeat_Max* = 2147483647
enum styleBackgroundRepeat : int {
    styleBackgroundRepeatRepeat = 0,
    styleBackgroundRepeatRepeatX = 1,
    styleBackgroundRepeatRepeatY = 2,
    styleBackgroundRepeatNoRepeat = 3,
    styleBackgroundRepeatNotSet = 4,
    styleBackgroundRepeat_Max = 2147483647,
}
#define global styleBackgroundRepeatRepeat   0x0
#define global styleBackgroundRepeatRepeatX  0x1
#define global styleBackgroundRepeatRepeatY  0x2
#define global styleBackgroundRepeatNoRepeat 0x3
#define global styleBackgroundRepeatNotSet   0x4
#define global styleBackgroundRepeat_Max     0x7FFFFFFF