ホーム › Web.MsHtml › textDecoration
textDecoration
列挙型メンバー 6
| 名前 | 10進 | 16進 |
|---|---|---|
| textDecorationNone | 0 | 0x0 |
| textDecorationUnderline | 1 | 0x1 |
| textDecorationOverline | 2 | 0x2 |
| textDecorationLineThrough | 3 | 0x3 |
| textDecorationBlink | 4 | 0x4 |
| textDecoration_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 2147483647enum 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