ホーム › Web.MsHtml › DISPLAY_MOVEUNIT
DISPLAY_MOVEUNIT
列挙型メンバー 7
| 名前 | 10進 | 16進 |
|---|---|---|
| DISPLAY_MOVEUNIT_PreviousLine | 1 | 0x1 |
| DISPLAY_MOVEUNIT_NextLine | 2 | 0x2 |
| DISPLAY_MOVEUNIT_CurrentLineStart | 3 | 0x3 |
| DISPLAY_MOVEUNIT_CurrentLineEnd | 4 | 0x4 |
| DISPLAY_MOVEUNIT_TopOfWindow | 5 | 0x5 |
| DISPLAY_MOVEUNIT_BottomOfWindow | 6 | 0x6 |
| DISPLAY_MOVEUNIT_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum DISPLAY_MOVEUNIT : int {
DISPLAY_MOVEUNIT_PreviousLine = 1,
DISPLAY_MOVEUNIT_NextLine = 2,
DISPLAY_MOVEUNIT_CurrentLineStart = 3,
DISPLAY_MOVEUNIT_CurrentLineEnd = 4,
DISPLAY_MOVEUNIT_TopOfWindow = 5,
DISPLAY_MOVEUNIT_BottomOfWindow = 6,
DISPLAY_MOVEUNIT_Max = 2147483647
} DISPLAY_MOVEUNIT;public enum DISPLAY_MOVEUNIT : int
{
DISPLAY_MOVEUNIT_PreviousLine = 1,
DISPLAY_MOVEUNIT_NextLine = 2,
DISPLAY_MOVEUNIT_CurrentLineStart = 3,
DISPLAY_MOVEUNIT_CurrentLineEnd = 4,
DISPLAY_MOVEUNIT_TopOfWindow = 5,
DISPLAY_MOVEUNIT_BottomOfWindow = 6,
DISPLAY_MOVEUNIT_Max = 2147483647,
}Public Enum DISPLAY_MOVEUNIT As Integer
DISPLAY_MOVEUNIT_PreviousLine = 1
DISPLAY_MOVEUNIT_NextLine = 2
DISPLAY_MOVEUNIT_CurrentLineStart = 3
DISPLAY_MOVEUNIT_CurrentLineEnd = 4
DISPLAY_MOVEUNIT_TopOfWindow = 5
DISPLAY_MOVEUNIT_BottomOfWindow = 6
DISPLAY_MOVEUNIT_Max = 2147483647
End Enumimport enum
class DISPLAY_MOVEUNIT(enum.IntEnum):
DISPLAY_MOVEUNIT_PreviousLine = 1
DISPLAY_MOVEUNIT_NextLine = 2
DISPLAY_MOVEUNIT_CurrentLineStart = 3
DISPLAY_MOVEUNIT_CurrentLineEnd = 4
DISPLAY_MOVEUNIT_TopOfWindow = 5
DISPLAY_MOVEUNIT_BottomOfWindow = 6
DISPLAY_MOVEUNIT_Max = 2147483647// DISPLAY_MOVEUNIT
pub const DISPLAY_MOVEUNIT_PreviousLine: i32 = 1;
pub const DISPLAY_MOVEUNIT_NextLine: i32 = 2;
pub const DISPLAY_MOVEUNIT_CurrentLineStart: i32 = 3;
pub const DISPLAY_MOVEUNIT_CurrentLineEnd: i32 = 4;
pub const DISPLAY_MOVEUNIT_TopOfWindow: i32 = 5;
pub const DISPLAY_MOVEUNIT_BottomOfWindow: i32 = 6;
pub const DISPLAY_MOVEUNIT_Max: i32 = 2147483647;// DISPLAY_MOVEUNIT
const (
DISPLAY_MOVEUNIT_PreviousLine int32 = 1
DISPLAY_MOVEUNIT_NextLine int32 = 2
DISPLAY_MOVEUNIT_CurrentLineStart int32 = 3
DISPLAY_MOVEUNIT_CurrentLineEnd int32 = 4
DISPLAY_MOVEUNIT_TopOfWindow int32 = 5
DISPLAY_MOVEUNIT_BottomOfWindow int32 = 6
DISPLAY_MOVEUNIT_Max int32 = 2147483647
)const
DISPLAY_MOVEUNIT_PreviousLine = 1;
DISPLAY_MOVEUNIT_NextLine = 2;
DISPLAY_MOVEUNIT_CurrentLineStart = 3;
DISPLAY_MOVEUNIT_CurrentLineEnd = 4;
DISPLAY_MOVEUNIT_TopOfWindow = 5;
DISPLAY_MOVEUNIT_BottomOfWindow = 6;
DISPLAY_MOVEUNIT_Max = 2147483647;// DISPLAY_MOVEUNIT
pub const DISPLAY_MOVEUNIT_PreviousLine: i32 = 1;
pub const DISPLAY_MOVEUNIT_NextLine: i32 = 2;
pub const DISPLAY_MOVEUNIT_CurrentLineStart: i32 = 3;
pub const DISPLAY_MOVEUNIT_CurrentLineEnd: i32 = 4;
pub const DISPLAY_MOVEUNIT_TopOfWindow: i32 = 5;
pub const DISPLAY_MOVEUNIT_BottomOfWindow: i32 = 6;
pub const DISPLAY_MOVEUNIT_Max: i32 = 2147483647;const
DISPLAY_MOVEUNIT_PreviousLine* = 1
DISPLAY_MOVEUNIT_NextLine* = 2
DISPLAY_MOVEUNIT_CurrentLineStart* = 3
DISPLAY_MOVEUNIT_CurrentLineEnd* = 4
DISPLAY_MOVEUNIT_TopOfWindow* = 5
DISPLAY_MOVEUNIT_BottomOfWindow* = 6
DISPLAY_MOVEUNIT_Max* = 2147483647enum DISPLAY_MOVEUNIT : int {
DISPLAY_MOVEUNIT_PreviousLine = 1,
DISPLAY_MOVEUNIT_NextLine = 2,
DISPLAY_MOVEUNIT_CurrentLineStart = 3,
DISPLAY_MOVEUNIT_CurrentLineEnd = 4,
DISPLAY_MOVEUNIT_TopOfWindow = 5,
DISPLAY_MOVEUNIT_BottomOfWindow = 6,
DISPLAY_MOVEUNIT_Max = 2147483647,
}#define global DISPLAY_MOVEUNIT_PreviousLine 0x1
#define global DISPLAY_MOVEUNIT_NextLine 0x2
#define global DISPLAY_MOVEUNIT_CurrentLineStart 0x3
#define global DISPLAY_MOVEUNIT_CurrentLineEnd 0x4
#define global DISPLAY_MOVEUNIT_TopOfWindow 0x5
#define global DISPLAY_MOVEUNIT_BottomOfWindow 0x6
#define global DISPLAY_MOVEUNIT_Max 0x7FFFFFFF