ホーム › UI.TabletPC › SelAlignmentConstants
SelAlignmentConstants
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| rtfLeft | 0 | 0x0 | 既定値です。段落は左余白に沿って配置されます。 |
| rtfRight | 1 | 0x1 | 段落は右余白に沿って配置されます。 |
| rtfCenter | 2 | 0x2 | 段落は左右の余白の中央に配置されます。 |
公式ドキュメント
InkEdit コントロールの余白を基準とした段落の配置を指定します。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 SelAlignmentConstants : int {
rtfLeft = 0,
rtfRight = 1,
rtfCenter = 2
} SelAlignmentConstants;public enum SelAlignmentConstants : int
{
rtfLeft = 0,
rtfRight = 1,
rtfCenter = 2,
}Public Enum SelAlignmentConstants As Integer
rtfLeft = 0
rtfRight = 1
rtfCenter = 2
End Enumimport enum
class SelAlignmentConstants(enum.IntEnum):
rtfLeft = 0
rtfRight = 1
rtfCenter = 2// SelAlignmentConstants
pub const rtfLeft: i32 = 0;
pub const rtfRight: i32 = 1;
pub const rtfCenter: i32 = 2;// SelAlignmentConstants
const (
rtfLeft int32 = 0
rtfRight int32 = 1
rtfCenter int32 = 2
)const
rtfLeft = 0;
rtfRight = 1;
rtfCenter = 2;// SelAlignmentConstants
pub const rtfLeft: i32 = 0;
pub const rtfRight: i32 = 1;
pub const rtfCenter: i32 = 2;const
rtfLeft* = 0
rtfRight* = 1
rtfCenter* = 2enum SelAlignmentConstants : int {
rtfLeft = 0,
rtfRight = 1,
rtfCenter = 2,
}#define global rtfLeft 0x0
#define global rtfRight 0x1
#define global rtfCenter 0x2