ホーム › Web.MsHtml › htmlDir
htmlDir
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| htmlDirNotSet | 0 | 0x0 |
| htmlDirLeftToRight | 1 | 0x1 |
| htmlDirRightToLeft | 2 | 0x2 |
| htmlDir_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 2147483647enum 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