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

htmlDir

列挙型
基底型i4

メンバー 4

名前10進16進
htmlDirNotSet00x0
htmlDirLeftToRight10x1
htmlDirRightToLeft20x2
htmlDir_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum htmlDir : int {
    htmlDirNotSet = 0,
    htmlDirLeftToRight = 1,
    htmlDirRightToLeft = 2,
    htmlDir_Max = 2147483647
} htmlDir;
public enum htmlDir : int
{
    htmlDirNotSet = 0,
    htmlDirLeftToRight = 1,
    htmlDirRightToLeft = 2,
    htmlDir_Max = 2147483647,
}
Public Enum htmlDir As Integer
    htmlDirNotSet = 0
    htmlDirLeftToRight = 1
    htmlDirRightToLeft = 2
    htmlDir_Max = 2147483647
End Enum
import enum

class htmlDir(enum.IntEnum):
    htmlDirNotSet = 0
    htmlDirLeftToRight = 1
    htmlDirRightToLeft = 2
    htmlDir_Max = 2147483647
// htmlDir
pub const htmlDirNotSet: i32 = 0;
pub const htmlDirLeftToRight: i32 = 1;
pub const htmlDirRightToLeft: i32 = 2;
pub const htmlDir_Max: i32 = 2147483647;
// htmlDir
const (
	htmlDirNotSet int32 = 0
	htmlDirLeftToRight int32 = 1
	htmlDirRightToLeft int32 = 2
	htmlDir_Max int32 = 2147483647
)
const
  htmlDirNotSet = 0;
  htmlDirLeftToRight = 1;
  htmlDirRightToLeft = 2;
  htmlDir_Max = 2147483647;
// htmlDir
pub const htmlDirNotSet: i32 = 0;
pub const htmlDirLeftToRight: i32 = 1;
pub const htmlDirRightToLeft: i32 = 2;
pub const htmlDir_Max: i32 = 2147483647;
const
  htmlDirNotSet* = 0
  htmlDirLeftToRight* = 1
  htmlDirRightToLeft* = 2
  htmlDir_Max* = 2147483647
enum htmlDir : int {
    htmlDirNotSet = 0,
    htmlDirLeftToRight = 1,
    htmlDirRightToLeft = 2,
    htmlDir_Max = 2147483647,
}
#define global htmlDirNotSet      0x0
#define global htmlDirLeftToRight 0x1
#define global htmlDirRightToLeft 0x2
#define global htmlDir_Max        0x7FFFFFFF