ホーム › Web.MsHtml › htmlLoop
htmlLoop
列挙型メンバー 2
| 名前 | 10進 | 16進 |
|---|---|---|
| htmlLoopLoopInfinite | -1 | 0xFFFFFFFF |
| htmlLoop_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum htmlLoop : int {
htmlLoopLoopInfinite = -1,
htmlLoop_Max = 2147483647
} htmlLoop;public enum htmlLoop : int
{
htmlLoopLoopInfinite = -1,
htmlLoop_Max = 2147483647,
}Public Enum htmlLoop As Integer
htmlLoopLoopInfinite = -1
htmlLoop_Max = 2147483647
End Enumimport enum
class htmlLoop(enum.IntEnum):
htmlLoopLoopInfinite = -1
htmlLoop_Max = 2147483647// htmlLoop
pub const htmlLoopLoopInfinite: i32 = -1;
pub const htmlLoop_Max: i32 = 2147483647;// htmlLoop
const (
htmlLoopLoopInfinite int32 = -1
htmlLoop_Max int32 = 2147483647
)const
htmlLoopLoopInfinite = -1;
htmlLoop_Max = 2147483647;// htmlLoop
pub const htmlLoopLoopInfinite: i32 = -1;
pub const htmlLoop_Max: i32 = 2147483647;const
htmlLoopLoopInfinite* = -1
htmlLoop_Max* = 2147483647enum htmlLoop : int {
htmlLoopLoopInfinite = -1,
htmlLoop_Max = 2147483647,
}#define global htmlLoopLoopInfinite 0xFFFFFFFF
#define global htmlLoop_Max 0x7FFFFFFF