UI_FONTUNDERLINE
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| UI_FONTUNDERLINE_NOTAVAILABLE | 0 | 0x0 | 下線が有効になっていません。 |
| UI_FONTUNDERLINE_NOTSET | 1 | 0x1 | 下線がオフです。 |
| UI_FONTUNDERLINE_SET | 2 | 0x2 | 下線がオンです。 |
公式ドキュメント
FontControl の下線の状態を識別する値を指定します。
解説(Remarks)
UI_FONTUNDERLINE は、次のスクリーンショットに示すように、FontControl の Underline トグルボタンに関連付けられています。
Underline トグルボタンは、FontControl では既定で表示されますが、FontType 属性の値によっては非表示にすることもできます。
Underline ボタンは、UI_PKEY_FontProperties_Underline の UI_FONTUNDERLINE 値に基づいて切り替えられます。
FontControl がサポートする下線のスタイルは、実線の一重線のみです。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 UI_FONTUNDERLINE : int {
UI_FONTUNDERLINE_NOTAVAILABLE = 0,
UI_FONTUNDERLINE_NOTSET = 1,
UI_FONTUNDERLINE_SET = 2
} UI_FONTUNDERLINE;public enum UI_FONTUNDERLINE : int
{
UI_FONTUNDERLINE_NOTAVAILABLE = 0,
UI_FONTUNDERLINE_NOTSET = 1,
UI_FONTUNDERLINE_SET = 2,
}Public Enum UI_FONTUNDERLINE As Integer
UI_FONTUNDERLINE_NOTAVAILABLE = 0
UI_FONTUNDERLINE_NOTSET = 1
UI_FONTUNDERLINE_SET = 2
End Enumimport enum
class UI_FONTUNDERLINE(enum.IntEnum):
UI_FONTUNDERLINE_NOTAVAILABLE = 0
UI_FONTUNDERLINE_NOTSET = 1
UI_FONTUNDERLINE_SET = 2// UI_FONTUNDERLINE
pub const UI_FONTUNDERLINE_NOTAVAILABLE: i32 = 0;
pub const UI_FONTUNDERLINE_NOTSET: i32 = 1;
pub const UI_FONTUNDERLINE_SET: i32 = 2;// UI_FONTUNDERLINE
const (
UI_FONTUNDERLINE_NOTAVAILABLE int32 = 0
UI_FONTUNDERLINE_NOTSET int32 = 1
UI_FONTUNDERLINE_SET int32 = 2
)const
UI_FONTUNDERLINE_NOTAVAILABLE = 0;
UI_FONTUNDERLINE_NOTSET = 1;
UI_FONTUNDERLINE_SET = 2;// UI_FONTUNDERLINE
pub const UI_FONTUNDERLINE_NOTAVAILABLE: i32 = 0;
pub const UI_FONTUNDERLINE_NOTSET: i32 = 1;
pub const UI_FONTUNDERLINE_SET: i32 = 2;const
UI_FONTUNDERLINE_NOTAVAILABLE* = 0
UI_FONTUNDERLINE_NOTSET* = 1
UI_FONTUNDERLINE_SET* = 2enum UI_FONTUNDERLINE : int {
UI_FONTUNDERLINE_NOTAVAILABLE = 0,
UI_FONTUNDERLINE_NOTSET = 1,
UI_FONTUNDERLINE_SET = 2,
}#define global UI_FONTUNDERLINE_NOTAVAILABLE 0x0
#define global UI_FONTUNDERLINE_NOTSET 0x1
#define global UI_FONTUNDERLINE_SET 0x2