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

htmlDirection

列挙型
基底型i4

メンバー 3

名前10進16進
htmlDirectionForward999990x1869F
htmlDirectionBackward-999990xFFFE7961
htmlDirection_Max21474836470x7FFFFFFF

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2147483647
enum htmlDirection : int {
    htmlDirectionForward = 99999,
    htmlDirectionBackward = -99999,
    htmlDirection_Max = 2147483647,
}
#define global htmlDirectionForward  0x1869F
#define global htmlDirectionBackward 0xFFFE7961
#define global htmlDirection_Max     0x7FFFFFFF