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

styleLayoutGridType

列挙型
基底型i4

メンバー 5

名前10進16進
styleLayoutGridTypeNotSet00x0
styleLayoutGridTypeLoose10x1
styleLayoutGridTypeStrict20x2
styleLayoutGridTypeFixed30x3
styleLayoutGridType_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleLayoutGridType : int {
    styleLayoutGridTypeNotSet = 0,
    styleLayoutGridTypeLoose = 1,
    styleLayoutGridTypeStrict = 2,
    styleLayoutGridTypeFixed = 3,
    styleLayoutGridType_Max = 2147483647
} styleLayoutGridType;
public enum styleLayoutGridType : int
{
    styleLayoutGridTypeNotSet = 0,
    styleLayoutGridTypeLoose = 1,
    styleLayoutGridTypeStrict = 2,
    styleLayoutGridTypeFixed = 3,
    styleLayoutGridType_Max = 2147483647,
}
Public Enum styleLayoutGridType As Integer
    styleLayoutGridTypeNotSet = 0
    styleLayoutGridTypeLoose = 1
    styleLayoutGridTypeStrict = 2
    styleLayoutGridTypeFixed = 3
    styleLayoutGridType_Max = 2147483647
End Enum
import enum

class styleLayoutGridType(enum.IntEnum):
    styleLayoutGridTypeNotSet = 0
    styleLayoutGridTypeLoose = 1
    styleLayoutGridTypeStrict = 2
    styleLayoutGridTypeFixed = 3
    styleLayoutGridType_Max = 2147483647
// styleLayoutGridType
pub const styleLayoutGridTypeNotSet: i32 = 0;
pub const styleLayoutGridTypeLoose: i32 = 1;
pub const styleLayoutGridTypeStrict: i32 = 2;
pub const styleLayoutGridTypeFixed: i32 = 3;
pub const styleLayoutGridType_Max: i32 = 2147483647;
// styleLayoutGridType
const (
	styleLayoutGridTypeNotSet int32 = 0
	styleLayoutGridTypeLoose int32 = 1
	styleLayoutGridTypeStrict int32 = 2
	styleLayoutGridTypeFixed int32 = 3
	styleLayoutGridType_Max int32 = 2147483647
)
const
  styleLayoutGridTypeNotSet = 0;
  styleLayoutGridTypeLoose = 1;
  styleLayoutGridTypeStrict = 2;
  styleLayoutGridTypeFixed = 3;
  styleLayoutGridType_Max = 2147483647;
// styleLayoutGridType
pub const styleLayoutGridTypeNotSet: i32 = 0;
pub const styleLayoutGridTypeLoose: i32 = 1;
pub const styleLayoutGridTypeStrict: i32 = 2;
pub const styleLayoutGridTypeFixed: i32 = 3;
pub const styleLayoutGridType_Max: i32 = 2147483647;
const
  styleLayoutGridTypeNotSet* = 0
  styleLayoutGridTypeLoose* = 1
  styleLayoutGridTypeStrict* = 2
  styleLayoutGridTypeFixed* = 3
  styleLayoutGridType_Max* = 2147483647
enum styleLayoutGridType : int {
    styleLayoutGridTypeNotSet = 0,
    styleLayoutGridTypeLoose = 1,
    styleLayoutGridTypeStrict = 2,
    styleLayoutGridTypeFixed = 3,
    styleLayoutGridType_Max = 2147483647,
}
#define global styleLayoutGridTypeNotSet 0x0
#define global styleLayoutGridTypeLoose  0x1
#define global styleLayoutGridTypeStrict 0x2
#define global styleLayoutGridTypeFixed  0x3
#define global styleLayoutGridType_Max   0x7FFFFFFF