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

DISPLAY_MOVEUNIT

列挙型
基底型i4

メンバー 7

名前10進16進
DISPLAY_MOVEUNIT_PreviousLine10x1
DISPLAY_MOVEUNIT_NextLine20x2
DISPLAY_MOVEUNIT_CurrentLineStart30x3
DISPLAY_MOVEUNIT_CurrentLineEnd40x4
DISPLAY_MOVEUNIT_TopOfWindow50x5
DISPLAY_MOVEUNIT_BottomOfWindow60x6
DISPLAY_MOVEUNIT_Max21474836470x7FFFFFFF

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2147483647
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,
}
#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