ホーム › UI.Controls.RichEdit › KHYPH
KHYPH
列挙型メンバー 7
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| khyphNil | 0 | 0x0 | ハイフネーションは許可されません。 |
| khyphNormal | 1 | 0x1 | ハイフネーション時に文字を変更しません。 |
| khyphAddBefore | 2 | 0x2 | ハイフネーション マークの前に文字を追加します。 |
| khyphChangeBefore | 3 | 0x3 | ハイフネーション マークの前の文字を変更します。 |
| khyphDeleteBefore | 4 | 0x4 | ハイフネーション マークの前の文字を削除します。 |
| khyphChangeAfter | 5 | 0x5 | ハイフネーション マークの後の文字を変更します。 |
| khyphDelAndChange | 6 | 0x6 | ハイフネーション マークの前の 2 文字が 1 文字に置き換えられます。HYPHRESULT の chHyph メンバーを参照してください。 |
公式ドキュメント
リッチ エディット コントロールでハイフネーションを行う方法を指定するために使用する値が含まれます。HyphenateProc コールバック関数はこの列挙型を使用します。
解説(Remarks)
ハイフネーションの規則は言語ごとに異なり、特定の言語ではすべてのハイフネーションの種類が有効とは限りません。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 6enum 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