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

styleAttrType

列挙型
基底型i4

メンバー 28

名前10進16進
styleAttrTypeString00x0
styleAttrTypeColor10x1
styleAttrTypeUrl20x2
styleAttrTypeInteger30x3
styleAttrTypeNumber40x4
styleAttrTypeLength50x5
styleAttrTypePx60x6
styleAttrTypeEm70x7
styleAttrTypeEx80x8
styleAttrTypeIn90x9
styleAttrTypeCm100xA
styleAttrTypeMm110xB
styleAttrTypePt120xC
styleAttrTypePc130xD
styleAttrTypeRem140xE
styleAttrTypeCh150xF
styleAttrTypeVh160x10
styleAttrTypeVw170x11
styleAttrTypeVmin180x12
styleAttrTypePercentage190x13
styleAttrTypeAngle200x14
styleAttrTypeDeg210x15
styleAttrTypeRad220x16
styleAttrTypeGrad230x17
styleAttrTypeTime240x18
styleAttrTypeS250x19
styleAttrTypeMs260x1A
styleAttrType_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleAttrType : int {
    styleAttrTypeString = 0,
    styleAttrTypeColor = 1,
    styleAttrTypeUrl = 2,
    styleAttrTypeInteger = 3,
    styleAttrTypeNumber = 4,
    styleAttrTypeLength = 5,
    styleAttrTypePx = 6,
    styleAttrTypeEm = 7,
    styleAttrTypeEx = 8,
    styleAttrTypeIn = 9,
    styleAttrTypeCm = 10,
    styleAttrTypeMm = 11,
    styleAttrTypePt = 12,
    styleAttrTypePc = 13,
    styleAttrTypeRem = 14,
    styleAttrTypeCh = 15,
    styleAttrTypeVh = 16,
    styleAttrTypeVw = 17,
    styleAttrTypeVmin = 18,
    styleAttrTypePercentage = 19,
    styleAttrTypeAngle = 20,
    styleAttrTypeDeg = 21,
    styleAttrTypeRad = 22,
    styleAttrTypeGrad = 23,
    styleAttrTypeTime = 24,
    styleAttrTypeS = 25,
    styleAttrTypeMs = 26,
    styleAttrType_Max = 2147483647
} styleAttrType;
public enum styleAttrType : int
{
    styleAttrTypeString = 0,
    styleAttrTypeColor = 1,
    styleAttrTypeUrl = 2,
    styleAttrTypeInteger = 3,
    styleAttrTypeNumber = 4,
    styleAttrTypeLength = 5,
    styleAttrTypePx = 6,
    styleAttrTypeEm = 7,
    styleAttrTypeEx = 8,
    styleAttrTypeIn = 9,
    styleAttrTypeCm = 10,
    styleAttrTypeMm = 11,
    styleAttrTypePt = 12,
    styleAttrTypePc = 13,
    styleAttrTypeRem = 14,
    styleAttrTypeCh = 15,
    styleAttrTypeVh = 16,
    styleAttrTypeVw = 17,
    styleAttrTypeVmin = 18,
    styleAttrTypePercentage = 19,
    styleAttrTypeAngle = 20,
    styleAttrTypeDeg = 21,
    styleAttrTypeRad = 22,
    styleAttrTypeGrad = 23,
    styleAttrTypeTime = 24,
    styleAttrTypeS = 25,
    styleAttrTypeMs = 26,
    styleAttrType_Max = 2147483647,
}
Public Enum styleAttrType As Integer
    styleAttrTypeString = 0
    styleAttrTypeColor = 1
    styleAttrTypeUrl = 2
    styleAttrTypeInteger = 3
    styleAttrTypeNumber = 4
    styleAttrTypeLength = 5
    styleAttrTypePx = 6
    styleAttrTypeEm = 7
    styleAttrTypeEx = 8
    styleAttrTypeIn = 9
    styleAttrTypeCm = 10
    styleAttrTypeMm = 11
    styleAttrTypePt = 12
    styleAttrTypePc = 13
    styleAttrTypeRem = 14
    styleAttrTypeCh = 15
    styleAttrTypeVh = 16
    styleAttrTypeVw = 17
    styleAttrTypeVmin = 18
    styleAttrTypePercentage = 19
    styleAttrTypeAngle = 20
    styleAttrTypeDeg = 21
    styleAttrTypeRad = 22
    styleAttrTypeGrad = 23
    styleAttrTypeTime = 24
    styleAttrTypeS = 25
    styleAttrTypeMs = 26
    styleAttrType_Max = 2147483647
End Enum
import enum

class styleAttrType(enum.IntEnum):
    styleAttrTypeString = 0
    styleAttrTypeColor = 1
    styleAttrTypeUrl = 2
    styleAttrTypeInteger = 3
    styleAttrTypeNumber = 4
    styleAttrTypeLength = 5
    styleAttrTypePx = 6
    styleAttrTypeEm = 7
    styleAttrTypeEx = 8
    styleAttrTypeIn = 9
    styleAttrTypeCm = 10
    styleAttrTypeMm = 11
    styleAttrTypePt = 12
    styleAttrTypePc = 13
    styleAttrTypeRem = 14
    styleAttrTypeCh = 15
    styleAttrTypeVh = 16
    styleAttrTypeVw = 17
    styleAttrTypeVmin = 18
    styleAttrTypePercentage = 19
    styleAttrTypeAngle = 20
    styleAttrTypeDeg = 21
    styleAttrTypeRad = 22
    styleAttrTypeGrad = 23
    styleAttrTypeTime = 24
    styleAttrTypeS = 25
    styleAttrTypeMs = 26
    styleAttrType_Max = 2147483647
// styleAttrType
pub const styleAttrTypeString: i32 = 0;
pub const styleAttrTypeColor: i32 = 1;
pub const styleAttrTypeUrl: i32 = 2;
pub const styleAttrTypeInteger: i32 = 3;
pub const styleAttrTypeNumber: i32 = 4;
pub const styleAttrTypeLength: i32 = 5;
pub const styleAttrTypePx: i32 = 6;
pub const styleAttrTypeEm: i32 = 7;
pub const styleAttrTypeEx: i32 = 8;
pub const styleAttrTypeIn: i32 = 9;
pub const styleAttrTypeCm: i32 = 10;
pub const styleAttrTypeMm: i32 = 11;
pub const styleAttrTypePt: i32 = 12;
pub const styleAttrTypePc: i32 = 13;
pub const styleAttrTypeRem: i32 = 14;
pub const styleAttrTypeCh: i32 = 15;
pub const styleAttrTypeVh: i32 = 16;
pub const styleAttrTypeVw: i32 = 17;
pub const styleAttrTypeVmin: i32 = 18;
pub const styleAttrTypePercentage: i32 = 19;
pub const styleAttrTypeAngle: i32 = 20;
pub const styleAttrTypeDeg: i32 = 21;
pub const styleAttrTypeRad: i32 = 22;
pub const styleAttrTypeGrad: i32 = 23;
pub const styleAttrTypeTime: i32 = 24;
pub const styleAttrTypeS: i32 = 25;
pub const styleAttrTypeMs: i32 = 26;
pub const styleAttrType_Max: i32 = 2147483647;
// styleAttrType
const (
	styleAttrTypeString int32 = 0
	styleAttrTypeColor int32 = 1
	styleAttrTypeUrl int32 = 2
	styleAttrTypeInteger int32 = 3
	styleAttrTypeNumber int32 = 4
	styleAttrTypeLength int32 = 5
	styleAttrTypePx int32 = 6
	styleAttrTypeEm int32 = 7
	styleAttrTypeEx int32 = 8
	styleAttrTypeIn int32 = 9
	styleAttrTypeCm int32 = 10
	styleAttrTypeMm int32 = 11
	styleAttrTypePt int32 = 12
	styleAttrTypePc int32 = 13
	styleAttrTypeRem int32 = 14
	styleAttrTypeCh int32 = 15
	styleAttrTypeVh int32 = 16
	styleAttrTypeVw int32 = 17
	styleAttrTypeVmin int32 = 18
	styleAttrTypePercentage int32 = 19
	styleAttrTypeAngle int32 = 20
	styleAttrTypeDeg int32 = 21
	styleAttrTypeRad int32 = 22
	styleAttrTypeGrad int32 = 23
	styleAttrTypeTime int32 = 24
	styleAttrTypeS int32 = 25
	styleAttrTypeMs int32 = 26
	styleAttrType_Max int32 = 2147483647
)
const
  styleAttrTypeString = 0;
  styleAttrTypeColor = 1;
  styleAttrTypeUrl = 2;
  styleAttrTypeInteger = 3;
  styleAttrTypeNumber = 4;
  styleAttrTypeLength = 5;
  styleAttrTypePx = 6;
  styleAttrTypeEm = 7;
  styleAttrTypeEx = 8;
  styleAttrTypeIn = 9;
  styleAttrTypeCm = 10;
  styleAttrTypeMm = 11;
  styleAttrTypePt = 12;
  styleAttrTypePc = 13;
  styleAttrTypeRem = 14;
  styleAttrTypeCh = 15;
  styleAttrTypeVh = 16;
  styleAttrTypeVw = 17;
  styleAttrTypeVmin = 18;
  styleAttrTypePercentage = 19;
  styleAttrTypeAngle = 20;
  styleAttrTypeDeg = 21;
  styleAttrTypeRad = 22;
  styleAttrTypeGrad = 23;
  styleAttrTypeTime = 24;
  styleAttrTypeS = 25;
  styleAttrTypeMs = 26;
  styleAttrType_Max = 2147483647;
// styleAttrType
pub const styleAttrTypeString: i32 = 0;
pub const styleAttrTypeColor: i32 = 1;
pub const styleAttrTypeUrl: i32 = 2;
pub const styleAttrTypeInteger: i32 = 3;
pub const styleAttrTypeNumber: i32 = 4;
pub const styleAttrTypeLength: i32 = 5;
pub const styleAttrTypePx: i32 = 6;
pub const styleAttrTypeEm: i32 = 7;
pub const styleAttrTypeEx: i32 = 8;
pub const styleAttrTypeIn: i32 = 9;
pub const styleAttrTypeCm: i32 = 10;
pub const styleAttrTypeMm: i32 = 11;
pub const styleAttrTypePt: i32 = 12;
pub const styleAttrTypePc: i32 = 13;
pub const styleAttrTypeRem: i32 = 14;
pub const styleAttrTypeCh: i32 = 15;
pub const styleAttrTypeVh: i32 = 16;
pub const styleAttrTypeVw: i32 = 17;
pub const styleAttrTypeVmin: i32 = 18;
pub const styleAttrTypePercentage: i32 = 19;
pub const styleAttrTypeAngle: i32 = 20;
pub const styleAttrTypeDeg: i32 = 21;
pub const styleAttrTypeRad: i32 = 22;
pub const styleAttrTypeGrad: i32 = 23;
pub const styleAttrTypeTime: i32 = 24;
pub const styleAttrTypeS: i32 = 25;
pub const styleAttrTypeMs: i32 = 26;
pub const styleAttrType_Max: i32 = 2147483647;
const
  styleAttrTypeString* = 0
  styleAttrTypeColor* = 1
  styleAttrTypeUrl* = 2
  styleAttrTypeInteger* = 3
  styleAttrTypeNumber* = 4
  styleAttrTypeLength* = 5
  styleAttrTypePx* = 6
  styleAttrTypeEm* = 7
  styleAttrTypeEx* = 8
  styleAttrTypeIn* = 9
  styleAttrTypeCm* = 10
  styleAttrTypeMm* = 11
  styleAttrTypePt* = 12
  styleAttrTypePc* = 13
  styleAttrTypeRem* = 14
  styleAttrTypeCh* = 15
  styleAttrTypeVh* = 16
  styleAttrTypeVw* = 17
  styleAttrTypeVmin* = 18
  styleAttrTypePercentage* = 19
  styleAttrTypeAngle* = 20
  styleAttrTypeDeg* = 21
  styleAttrTypeRad* = 22
  styleAttrTypeGrad* = 23
  styleAttrTypeTime* = 24
  styleAttrTypeS* = 25
  styleAttrTypeMs* = 26
  styleAttrType_Max* = 2147483647
enum styleAttrType : int {
    styleAttrTypeString = 0,
    styleAttrTypeColor = 1,
    styleAttrTypeUrl = 2,
    styleAttrTypeInteger = 3,
    styleAttrTypeNumber = 4,
    styleAttrTypeLength = 5,
    styleAttrTypePx = 6,
    styleAttrTypeEm = 7,
    styleAttrTypeEx = 8,
    styleAttrTypeIn = 9,
    styleAttrTypeCm = 10,
    styleAttrTypeMm = 11,
    styleAttrTypePt = 12,
    styleAttrTypePc = 13,
    styleAttrTypeRem = 14,
    styleAttrTypeCh = 15,
    styleAttrTypeVh = 16,
    styleAttrTypeVw = 17,
    styleAttrTypeVmin = 18,
    styleAttrTypePercentage = 19,
    styleAttrTypeAngle = 20,
    styleAttrTypeDeg = 21,
    styleAttrTypeRad = 22,
    styleAttrTypeGrad = 23,
    styleAttrTypeTime = 24,
    styleAttrTypeS = 25,
    styleAttrTypeMs = 26,
    styleAttrType_Max = 2147483647,
}
#define global styleAttrTypeString     0x0
#define global styleAttrTypeColor      0x1
#define global styleAttrTypeUrl        0x2
#define global styleAttrTypeInteger    0x3
#define global styleAttrTypeNumber     0x4
#define global styleAttrTypeLength     0x5
#define global styleAttrTypePx         0x6
#define global styleAttrTypeEm         0x7
#define global styleAttrTypeEx         0x8
#define global styleAttrTypeIn         0x9
#define global styleAttrTypeCm         0xA
#define global styleAttrTypeMm         0xB
#define global styleAttrTypePt         0xC
#define global styleAttrTypePc         0xD
#define global styleAttrTypeRem        0xE
#define global styleAttrTypeCh         0xF
#define global styleAttrTypeVh         0x10
#define global styleAttrTypeVw         0x11
#define global styleAttrTypeVmin       0x12
#define global styleAttrTypePercentage 0x13
#define global styleAttrTypeAngle      0x14
#define global styleAttrTypeDeg        0x15
#define global styleAttrTypeRad        0x16
#define global styleAttrTypeGrad       0x17
#define global styleAttrTypeTime       0x18
#define global styleAttrTypeS          0x19
#define global styleAttrTypeMs         0x1A
#define global styleAttrType_Max       0x7FFFFFFF