ホーム › Web.MsHtml › HTMLCaptionFlag
HTMLCaptionFlag
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| HTMLCaptionFlagNo | 0 | 0x0 |
| HTMLCaptionFlagYes | 12582912 | 0xC00000 |
| HTMLCaptionFlag_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 2147483647enum HTMLCaptionFlag : int {
HTMLCaptionFlagNo = 0,
HTMLCaptionFlagYes = 12582912,
HTMLCaptionFlag_Max = 2147483647,
}#define global HTMLCaptionFlagNo 0x0
#define global HTMLCaptionFlagYes 0xC00000
#define global HTMLCaptionFlag_Max 0x7FFFFFFF