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

styleBackgroundAttachment

列挙型
基底型i4

メンバー 4

名前10進16進
styleBackgroundAttachmentFixed00x0
styleBackgroundAttachmentScroll10x1
styleBackgroundAttachmentNotSet20x2
styleBackgroundAttachment_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleBackgroundAttachment : int {
    styleBackgroundAttachmentFixed = 0,
    styleBackgroundAttachmentScroll = 1,
    styleBackgroundAttachmentNotSet = 2,
    styleBackgroundAttachment_Max = 2147483647
} styleBackgroundAttachment;
public enum styleBackgroundAttachment : int
{
    styleBackgroundAttachmentFixed = 0,
    styleBackgroundAttachmentScroll = 1,
    styleBackgroundAttachmentNotSet = 2,
    styleBackgroundAttachment_Max = 2147483647,
}
Public Enum styleBackgroundAttachment As Integer
    styleBackgroundAttachmentFixed = 0
    styleBackgroundAttachmentScroll = 1
    styleBackgroundAttachmentNotSet = 2
    styleBackgroundAttachment_Max = 2147483647
End Enum
import enum

class styleBackgroundAttachment(enum.IntEnum):
    styleBackgroundAttachmentFixed = 0
    styleBackgroundAttachmentScroll = 1
    styleBackgroundAttachmentNotSet = 2
    styleBackgroundAttachment_Max = 2147483647
// styleBackgroundAttachment
pub const styleBackgroundAttachmentFixed: i32 = 0;
pub const styleBackgroundAttachmentScroll: i32 = 1;
pub const styleBackgroundAttachmentNotSet: i32 = 2;
pub const styleBackgroundAttachment_Max: i32 = 2147483647;
// styleBackgroundAttachment
const (
	styleBackgroundAttachmentFixed int32 = 0
	styleBackgroundAttachmentScroll int32 = 1
	styleBackgroundAttachmentNotSet int32 = 2
	styleBackgroundAttachment_Max int32 = 2147483647
)
const
  styleBackgroundAttachmentFixed = 0;
  styleBackgroundAttachmentScroll = 1;
  styleBackgroundAttachmentNotSet = 2;
  styleBackgroundAttachment_Max = 2147483647;
// styleBackgroundAttachment
pub const styleBackgroundAttachmentFixed: i32 = 0;
pub const styleBackgroundAttachmentScroll: i32 = 1;
pub const styleBackgroundAttachmentNotSet: i32 = 2;
pub const styleBackgroundAttachment_Max: i32 = 2147483647;
const
  styleBackgroundAttachmentFixed* = 0
  styleBackgroundAttachmentScroll* = 1
  styleBackgroundAttachmentNotSet* = 2
  styleBackgroundAttachment_Max* = 2147483647
enum styleBackgroundAttachment : int {
    styleBackgroundAttachmentFixed = 0,
    styleBackgroundAttachmentScroll = 1,
    styleBackgroundAttachmentNotSet = 2,
    styleBackgroundAttachment_Max = 2147483647,
}
#define global styleBackgroundAttachmentFixed  0x0
#define global styleBackgroundAttachmentScroll 0x1
#define global styleBackgroundAttachmentNotSet 0x2
#define global styleBackgroundAttachment_Max   0x7FFFFFFF