Win32 API 日本語リファレンス
ホームWeb.MsHtml › textDecoration

textDecoration

列挙型
基底型i4

メンバー 6

名前10進16進
textDecorationNone00x0
textDecorationUnderline10x1
textDecorationOverline20x2
textDecorationLineThrough30x3
textDecorationBlink40x4
textDecoration_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum textDecoration : int {
    textDecorationNone = 0,
    textDecorationUnderline = 1,
    textDecorationOverline = 2,
    textDecorationLineThrough = 3,
    textDecorationBlink = 4,
    textDecoration_Max = 2147483647
} textDecoration;
public enum textDecoration : int
{
    textDecorationNone = 0,
    textDecorationUnderline = 1,
    textDecorationOverline = 2,
    textDecorationLineThrough = 3,
    textDecorationBlink = 4,
    textDecoration_Max = 2147483647,
}
Public Enum textDecoration As Integer
    textDecorationNone = 0
    textDecorationUnderline = 1
    textDecorationOverline = 2
    textDecorationLineThrough = 3
    textDecorationBlink = 4
    textDecoration_Max = 2147483647
End Enum
import enum

class textDecoration(enum.IntEnum):
    textDecorationNone = 0
    textDecorationUnderline = 1
    textDecorationOverline = 2
    textDecorationLineThrough = 3
    textDecorationBlink = 4
    textDecoration_Max = 2147483647
// textDecoration
pub const textDecorationNone: i32 = 0;
pub const textDecorationUnderline: i32 = 1;
pub const textDecorationOverline: i32 = 2;
pub const textDecorationLineThrough: i32 = 3;
pub const textDecorationBlink: i32 = 4;
pub const textDecoration_Max: i32 = 2147483647;
// textDecoration
const (
	textDecorationNone int32 = 0
	textDecorationUnderline int32 = 1
	textDecorationOverline int32 = 2
	textDecorationLineThrough int32 = 3
	textDecorationBlink int32 = 4
	textDecoration_Max int32 = 2147483647
)
const
  textDecorationNone = 0;
  textDecorationUnderline = 1;
  textDecorationOverline = 2;
  textDecorationLineThrough = 3;
  textDecorationBlink = 4;
  textDecoration_Max = 2147483647;
// textDecoration
pub const textDecorationNone: i32 = 0;
pub const textDecorationUnderline: i32 = 1;
pub const textDecorationOverline: i32 = 2;
pub const textDecorationLineThrough: i32 = 3;
pub const textDecorationBlink: i32 = 4;
pub const textDecoration_Max: i32 = 2147483647;
const
  textDecorationNone* = 0
  textDecorationUnderline* = 1
  textDecorationOverline* = 2
  textDecorationLineThrough* = 3
  textDecorationBlink* = 4
  textDecoration_Max* = 2147483647
enum textDecoration : int {
    textDecorationNone = 0,
    textDecorationUnderline = 1,
    textDecorationOverline = 2,
    textDecorationLineThrough = 3,
    textDecorationBlink = 4,
    textDecoration_Max = 2147483647,
}
#define global textDecorationNone        0x0
#define global textDecorationUnderline   0x1
#define global textDecorationOverline    0x2
#define global textDecorationLineThrough 0x3
#define global textDecorationBlink       0x4
#define global textDecoration_Max        0x7FFFFFFF