Win32 API 日本語リファレンス
ホームUI.Controls.RichEdit › KHYPH

KHYPH

列挙型
基底型i4

メンバー 7

名前10進16進
khyphNil00x0
khyphNormal10x1
khyphAddBefore20x2
khyphChangeBefore30x3
khyphDeleteBefore40x4
khyphChangeAfter50x5
khyphDelAndChange60x6

各言語での定義

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

typedef enum KHYPH : int {
    khyphNil = 0,
    khyphNormal = 1,
    khyphAddBefore = 2,
    khyphChangeBefore = 3,
    khyphDeleteBefore = 4,
    khyphChangeAfter = 5,
    khyphDelAndChange = 6
} KHYPH;
public enum KHYPH : int
{
    khyphNil = 0,
    khyphNormal = 1,
    khyphAddBefore = 2,
    khyphChangeBefore = 3,
    khyphDeleteBefore = 4,
    khyphChangeAfter = 5,
    khyphDelAndChange = 6,
}
Public Enum KHYPH As Integer
    khyphNil = 0
    khyphNormal = 1
    khyphAddBefore = 2
    khyphChangeBefore = 3
    khyphDeleteBefore = 4
    khyphChangeAfter = 5
    khyphDelAndChange = 6
End Enum
import enum

class KHYPH(enum.IntEnum):
    khyphNil = 0
    khyphNormal = 1
    khyphAddBefore = 2
    khyphChangeBefore = 3
    khyphDeleteBefore = 4
    khyphChangeAfter = 5
    khyphDelAndChange = 6
// KHYPH
pub const khyphNil: i32 = 0;
pub const khyphNormal: i32 = 1;
pub const khyphAddBefore: i32 = 2;
pub const khyphChangeBefore: i32 = 3;
pub const khyphDeleteBefore: i32 = 4;
pub const khyphChangeAfter: i32 = 5;
pub const khyphDelAndChange: i32 = 6;
// KHYPH
const (
	khyphNil int32 = 0
	khyphNormal int32 = 1
	khyphAddBefore int32 = 2
	khyphChangeBefore int32 = 3
	khyphDeleteBefore int32 = 4
	khyphChangeAfter int32 = 5
	khyphDelAndChange int32 = 6
)
const
  khyphNil = 0;
  khyphNormal = 1;
  khyphAddBefore = 2;
  khyphChangeBefore = 3;
  khyphDeleteBefore = 4;
  khyphChangeAfter = 5;
  khyphDelAndChange = 6;
// KHYPH
pub const khyphNil: i32 = 0;
pub const khyphNormal: i32 = 1;
pub const khyphAddBefore: i32 = 2;
pub const khyphChangeBefore: i32 = 3;
pub const khyphDeleteBefore: i32 = 4;
pub const khyphChangeAfter: i32 = 5;
pub const khyphDelAndChange: i32 = 6;
const
  khyphNil* = 0
  khyphNormal* = 1
  khyphAddBefore* = 2
  khyphChangeBefore* = 3
  khyphDeleteBefore* = 4
  khyphChangeAfter* = 5
  khyphDelAndChange* = 6
enum KHYPH : int {
    khyphNil = 0,
    khyphNormal = 1,
    khyphAddBefore = 2,
    khyphChangeBefore = 3,
    khyphDeleteBefore = 4,
    khyphChangeAfter = 5,
    khyphDelAndChange = 6,
}
#define global khyphNil          0x0
#define global khyphNormal       0x1
#define global khyphAddBefore    0x2
#define global khyphChangeBefore 0x3
#define global khyphDeleteBefore 0x4
#define global khyphChangeAfter  0x5
#define global khyphDelAndChange 0x6