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

styleLayoutFlow

列挙型
基底型i4

メンバー 4

名前10進16進
styleLayoutFlowHorizontal00x0
styleLayoutFlowVerticalIdeographic10x1
styleLayoutFlowNotSet20x2
styleLayoutFlow_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleLayoutFlow : int {
    styleLayoutFlowHorizontal = 0,
    styleLayoutFlowVerticalIdeographic = 1,
    styleLayoutFlowNotSet = 2,
    styleLayoutFlow_Max = 2147483647
} styleLayoutFlow;
public enum styleLayoutFlow : int
{
    styleLayoutFlowHorizontal = 0,
    styleLayoutFlowVerticalIdeographic = 1,
    styleLayoutFlowNotSet = 2,
    styleLayoutFlow_Max = 2147483647,
}
Public Enum styleLayoutFlow As Integer
    styleLayoutFlowHorizontal = 0
    styleLayoutFlowVerticalIdeographic = 1
    styleLayoutFlowNotSet = 2
    styleLayoutFlow_Max = 2147483647
End Enum
import enum

class styleLayoutFlow(enum.IntEnum):
    styleLayoutFlowHorizontal = 0
    styleLayoutFlowVerticalIdeographic = 1
    styleLayoutFlowNotSet = 2
    styleLayoutFlow_Max = 2147483647
// styleLayoutFlow
pub const styleLayoutFlowHorizontal: i32 = 0;
pub const styleLayoutFlowVerticalIdeographic: i32 = 1;
pub const styleLayoutFlowNotSet: i32 = 2;
pub const styleLayoutFlow_Max: i32 = 2147483647;
// styleLayoutFlow
const (
	styleLayoutFlowHorizontal int32 = 0
	styleLayoutFlowVerticalIdeographic int32 = 1
	styleLayoutFlowNotSet int32 = 2
	styleLayoutFlow_Max int32 = 2147483647
)
const
  styleLayoutFlowHorizontal = 0;
  styleLayoutFlowVerticalIdeographic = 1;
  styleLayoutFlowNotSet = 2;
  styleLayoutFlow_Max = 2147483647;
// styleLayoutFlow
pub const styleLayoutFlowHorizontal: i32 = 0;
pub const styleLayoutFlowVerticalIdeographic: i32 = 1;
pub const styleLayoutFlowNotSet: i32 = 2;
pub const styleLayoutFlow_Max: i32 = 2147483647;
const
  styleLayoutFlowHorizontal* = 0
  styleLayoutFlowVerticalIdeographic* = 1
  styleLayoutFlowNotSet* = 2
  styleLayoutFlow_Max* = 2147483647
enum styleLayoutFlow : int {
    styleLayoutFlowHorizontal = 0,
    styleLayoutFlowVerticalIdeographic = 1,
    styleLayoutFlowNotSet = 2,
    styleLayoutFlow_Max = 2147483647,
}
#define global styleLayoutFlowHorizontal          0x0
#define global styleLayoutFlowVerticalIdeographic 0x1
#define global styleLayoutFlowNotSet              0x2
#define global styleLayoutFlow_Max                0x7FFFFFFF