ホーム › UI.Accessibility › ActiveEnd
ActiveEnd
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| ActiveEnd_None | 0 | 0x0 | キャレットはテキスト範囲のどちらの端にもありません。 |
| ActiveEnd_Start | 1 | 0x1 | キャレットはテキスト範囲の先頭にあります。 |
| ActiveEnd_End | 2 | 0x2 | キャレットはテキスト範囲の末尾にあります。 |
公式ドキュメント
SelectionActiveEnd テキスト属性に指定できる値を含みます。この属性は、現在選択されているテキストを表すテキスト範囲を基準としたキャレットの位置を示します。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 ActiveEnd : int {
ActiveEnd_None = 0,
ActiveEnd_Start = 1,
ActiveEnd_End = 2
} ActiveEnd;public enum ActiveEnd : int
{
ActiveEnd_None = 0,
ActiveEnd_Start = 1,
ActiveEnd_End = 2,
}Public Enum ActiveEnd As Integer
ActiveEnd_None = 0
ActiveEnd_Start = 1
ActiveEnd_End = 2
End Enumimport enum
class ActiveEnd(enum.IntEnum):
ActiveEnd_None = 0
ActiveEnd_Start = 1
ActiveEnd_End = 2// ActiveEnd
pub const ActiveEnd_None: i32 = 0;
pub const ActiveEnd_Start: i32 = 1;
pub const ActiveEnd_End: i32 = 2;// ActiveEnd
const (
ActiveEnd_None int32 = 0
ActiveEnd_Start int32 = 1
ActiveEnd_End int32 = 2
)const
ActiveEnd_None = 0;
ActiveEnd_Start = 1;
ActiveEnd_End = 2;// ActiveEnd
pub const ActiveEnd_None: i32 = 0;
pub const ActiveEnd_Start: i32 = 1;
pub const ActiveEnd_End: i32 = 2;const
ActiveEnd_None* = 0
ActiveEnd_Start* = 1
ActiveEnd_End* = 2enum ActiveEnd : int {
ActiveEnd_None = 0,
ActiveEnd_Start = 1,
ActiveEnd_End = 2,
}#define global ActiveEnd_None 0x0
#define global ActiveEnd_Start 0x1
#define global ActiveEnd_End 0x2