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