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

styleCaptionSide

列挙型
基底型i4

メンバー 6

名前10進16進
styleCaptionSideNotSet00x0
styleCaptionSideTop10x1
styleCaptionSideBottom20x2
styleCaptionSideLeft30x3
styleCaptionSideRight40x4
styleCaptionSide_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleCaptionSide : int {
    styleCaptionSideNotSet = 0,
    styleCaptionSideTop = 1,
    styleCaptionSideBottom = 2,
    styleCaptionSideLeft = 3,
    styleCaptionSideRight = 4,
    styleCaptionSide_Max = 2147483647
} styleCaptionSide;
public enum styleCaptionSide : int
{
    styleCaptionSideNotSet = 0,
    styleCaptionSideTop = 1,
    styleCaptionSideBottom = 2,
    styleCaptionSideLeft = 3,
    styleCaptionSideRight = 4,
    styleCaptionSide_Max = 2147483647,
}
Public Enum styleCaptionSide As Integer
    styleCaptionSideNotSet = 0
    styleCaptionSideTop = 1
    styleCaptionSideBottom = 2
    styleCaptionSideLeft = 3
    styleCaptionSideRight = 4
    styleCaptionSide_Max = 2147483647
End Enum
import enum

class styleCaptionSide(enum.IntEnum):
    styleCaptionSideNotSet = 0
    styleCaptionSideTop = 1
    styleCaptionSideBottom = 2
    styleCaptionSideLeft = 3
    styleCaptionSideRight = 4
    styleCaptionSide_Max = 2147483647
// styleCaptionSide
pub const styleCaptionSideNotSet: i32 = 0;
pub const styleCaptionSideTop: i32 = 1;
pub const styleCaptionSideBottom: i32 = 2;
pub const styleCaptionSideLeft: i32 = 3;
pub const styleCaptionSideRight: i32 = 4;
pub const styleCaptionSide_Max: i32 = 2147483647;
// styleCaptionSide
const (
	styleCaptionSideNotSet int32 = 0
	styleCaptionSideTop int32 = 1
	styleCaptionSideBottom int32 = 2
	styleCaptionSideLeft int32 = 3
	styleCaptionSideRight int32 = 4
	styleCaptionSide_Max int32 = 2147483647
)
const
  styleCaptionSideNotSet = 0;
  styleCaptionSideTop = 1;
  styleCaptionSideBottom = 2;
  styleCaptionSideLeft = 3;
  styleCaptionSideRight = 4;
  styleCaptionSide_Max = 2147483647;
// styleCaptionSide
pub const styleCaptionSideNotSet: i32 = 0;
pub const styleCaptionSideTop: i32 = 1;
pub const styleCaptionSideBottom: i32 = 2;
pub const styleCaptionSideLeft: i32 = 3;
pub const styleCaptionSideRight: i32 = 4;
pub const styleCaptionSide_Max: i32 = 2147483647;
const
  styleCaptionSideNotSet* = 0
  styleCaptionSideTop* = 1
  styleCaptionSideBottom* = 2
  styleCaptionSideLeft* = 3
  styleCaptionSideRight* = 4
  styleCaptionSide_Max* = 2147483647
enum styleCaptionSide : int {
    styleCaptionSideNotSet = 0,
    styleCaptionSideTop = 1,
    styleCaptionSideBottom = 2,
    styleCaptionSideLeft = 3,
    styleCaptionSideRight = 4,
    styleCaptionSide_Max = 2147483647,
}
#define global styleCaptionSideNotSet 0x0
#define global styleCaptionSideTop    0x1
#define global styleCaptionSideBottom 0x2
#define global styleCaptionSideLeft   0x3
#define global styleCaptionSideRight  0x4
#define global styleCaptionSide_Max   0x7FFFFFFF