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

HTMLCaptionFlag

列挙型
基底型i4

メンバー 3

名前10進16進
HTMLCaptionFlagNo00x0
HTMLCaptionFlagYes125829120xC00000
HTMLCaptionFlag_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum HTMLCaptionFlag : int {
    HTMLCaptionFlagNo = 0,
    HTMLCaptionFlagYes = 12582912,
    HTMLCaptionFlag_Max = 2147483647
} HTMLCaptionFlag;
public enum HTMLCaptionFlag : int
{
    HTMLCaptionFlagNo = 0,
    HTMLCaptionFlagYes = 12582912,
    HTMLCaptionFlag_Max = 2147483647,
}
Public Enum HTMLCaptionFlag As Integer
    HTMLCaptionFlagNo = 0
    HTMLCaptionFlagYes = 12582912
    HTMLCaptionFlag_Max = 2147483647
End Enum
import enum

class HTMLCaptionFlag(enum.IntEnum):
    HTMLCaptionFlagNo = 0
    HTMLCaptionFlagYes = 12582912
    HTMLCaptionFlag_Max = 2147483647
// HTMLCaptionFlag
pub const HTMLCaptionFlagNo: i32 = 0;
pub const HTMLCaptionFlagYes: i32 = 12582912;
pub const HTMLCaptionFlag_Max: i32 = 2147483647;
// HTMLCaptionFlag
const (
	HTMLCaptionFlagNo int32 = 0
	HTMLCaptionFlagYes int32 = 12582912
	HTMLCaptionFlag_Max int32 = 2147483647
)
const
  HTMLCaptionFlagNo = 0;
  HTMLCaptionFlagYes = 12582912;
  HTMLCaptionFlag_Max = 2147483647;
// HTMLCaptionFlag
pub const HTMLCaptionFlagNo: i32 = 0;
pub const HTMLCaptionFlagYes: i32 = 12582912;
pub const HTMLCaptionFlag_Max: i32 = 2147483647;
const
  HTMLCaptionFlagNo* = 0
  HTMLCaptionFlagYes* = 12582912
  HTMLCaptionFlag_Max* = 2147483647
enum HTMLCaptionFlag : int {
    HTMLCaptionFlagNo = 0,
    HTMLCaptionFlagYes = 12582912,
    HTMLCaptionFlag_Max = 2147483647,
}
#define global HTMLCaptionFlagNo   0x0
#define global HTMLCaptionFlagYes  0xC00000
#define global HTMLCaptionFlag_Max 0x7FFFFFFF