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

styleJustifyContent

列挙型
基底型i4

メンバー 7

名前10進16進
styleJustifyContentFlexStart00x0
styleJustifyContentFlexEnd10x1
styleJustifyContentCenter20x2
styleJustifyContentSpaceBetween30x3
styleJustifyContentSpaceAround40x4
styleJustifyContentNotSet50x5
styleJustifyContent_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleJustifyContent : int {
    styleJustifyContentFlexStart = 0,
    styleJustifyContentFlexEnd = 1,
    styleJustifyContentCenter = 2,
    styleJustifyContentSpaceBetween = 3,
    styleJustifyContentSpaceAround = 4,
    styleJustifyContentNotSet = 5,
    styleJustifyContent_Max = 2147483647
} styleJustifyContent;
public enum styleJustifyContent : int
{
    styleJustifyContentFlexStart = 0,
    styleJustifyContentFlexEnd = 1,
    styleJustifyContentCenter = 2,
    styleJustifyContentSpaceBetween = 3,
    styleJustifyContentSpaceAround = 4,
    styleJustifyContentNotSet = 5,
    styleJustifyContent_Max = 2147483647,
}
Public Enum styleJustifyContent As Integer
    styleJustifyContentFlexStart = 0
    styleJustifyContentFlexEnd = 1
    styleJustifyContentCenter = 2
    styleJustifyContentSpaceBetween = 3
    styleJustifyContentSpaceAround = 4
    styleJustifyContentNotSet = 5
    styleJustifyContent_Max = 2147483647
End Enum
import enum

class styleJustifyContent(enum.IntEnum):
    styleJustifyContentFlexStart = 0
    styleJustifyContentFlexEnd = 1
    styleJustifyContentCenter = 2
    styleJustifyContentSpaceBetween = 3
    styleJustifyContentSpaceAround = 4
    styleJustifyContentNotSet = 5
    styleJustifyContent_Max = 2147483647
// styleJustifyContent
pub const styleJustifyContentFlexStart: i32 = 0;
pub const styleJustifyContentFlexEnd: i32 = 1;
pub const styleJustifyContentCenter: i32 = 2;
pub const styleJustifyContentSpaceBetween: i32 = 3;
pub const styleJustifyContentSpaceAround: i32 = 4;
pub const styleJustifyContentNotSet: i32 = 5;
pub const styleJustifyContent_Max: i32 = 2147483647;
// styleJustifyContent
const (
	styleJustifyContentFlexStart int32 = 0
	styleJustifyContentFlexEnd int32 = 1
	styleJustifyContentCenter int32 = 2
	styleJustifyContentSpaceBetween int32 = 3
	styleJustifyContentSpaceAround int32 = 4
	styleJustifyContentNotSet int32 = 5
	styleJustifyContent_Max int32 = 2147483647
)
const
  styleJustifyContentFlexStart = 0;
  styleJustifyContentFlexEnd = 1;
  styleJustifyContentCenter = 2;
  styleJustifyContentSpaceBetween = 3;
  styleJustifyContentSpaceAround = 4;
  styleJustifyContentNotSet = 5;
  styleJustifyContent_Max = 2147483647;
// styleJustifyContent
pub const styleJustifyContentFlexStart: i32 = 0;
pub const styleJustifyContentFlexEnd: i32 = 1;
pub const styleJustifyContentCenter: i32 = 2;
pub const styleJustifyContentSpaceBetween: i32 = 3;
pub const styleJustifyContentSpaceAround: i32 = 4;
pub const styleJustifyContentNotSet: i32 = 5;
pub const styleJustifyContent_Max: i32 = 2147483647;
const
  styleJustifyContentFlexStart* = 0
  styleJustifyContentFlexEnd* = 1
  styleJustifyContentCenter* = 2
  styleJustifyContentSpaceBetween* = 3
  styleJustifyContentSpaceAround* = 4
  styleJustifyContentNotSet* = 5
  styleJustifyContent_Max* = 2147483647
enum styleJustifyContent : int {
    styleJustifyContentFlexStart = 0,
    styleJustifyContentFlexEnd = 1,
    styleJustifyContentCenter = 2,
    styleJustifyContentSpaceBetween = 3,
    styleJustifyContentSpaceAround = 4,
    styleJustifyContentNotSet = 5,
    styleJustifyContent_Max = 2147483647,
}
#define global styleJustifyContentFlexStart    0x0
#define global styleJustifyContentFlexEnd      0x1
#define global styleJustifyContentCenter       0x2
#define global styleJustifyContentSpaceBetween 0x3
#define global styleJustifyContentSpaceAround  0x4
#define global styleJustifyContentNotSet       0x5
#define global styleJustifyContent_Max         0x7FFFFFFF