ホーム › Web.MsHtml › htmlWrap
htmlWrap
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| htmlWrapOff | 1 | 0x1 |
| htmlWrapSoft | 2 | 0x2 |
| htmlWrapHard | 3 | 0x3 |
| htmlWrap_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum htmlWrap : int {
htmlWrapOff = 1,
htmlWrapSoft = 2,
htmlWrapHard = 3,
htmlWrap_Max = 2147483647
} htmlWrap;public enum htmlWrap : int
{
htmlWrapOff = 1,
htmlWrapSoft = 2,
htmlWrapHard = 3,
htmlWrap_Max = 2147483647,
}Public Enum htmlWrap As Integer
htmlWrapOff = 1
htmlWrapSoft = 2
htmlWrapHard = 3
htmlWrap_Max = 2147483647
End Enumimport enum
class htmlWrap(enum.IntEnum):
htmlWrapOff = 1
htmlWrapSoft = 2
htmlWrapHard = 3
htmlWrap_Max = 2147483647// htmlWrap
pub const htmlWrapOff: i32 = 1;
pub const htmlWrapSoft: i32 = 2;
pub const htmlWrapHard: i32 = 3;
pub const htmlWrap_Max: i32 = 2147483647;// htmlWrap
const (
htmlWrapOff int32 = 1
htmlWrapSoft int32 = 2
htmlWrapHard int32 = 3
htmlWrap_Max int32 = 2147483647
)const
htmlWrapOff = 1;
htmlWrapSoft = 2;
htmlWrapHard = 3;
htmlWrap_Max = 2147483647;// htmlWrap
pub const htmlWrapOff: i32 = 1;
pub const htmlWrapSoft: i32 = 2;
pub const htmlWrapHard: i32 = 3;
pub const htmlWrap_Max: i32 = 2147483647;const
htmlWrapOff* = 1
htmlWrapSoft* = 2
htmlWrapHard* = 3
htmlWrap_Max* = 2147483647enum htmlWrap : int {
htmlWrapOff = 1,
htmlWrapSoft = 2,
htmlWrapHard = 3,
htmlWrap_Max = 2147483647,
}#define global htmlWrapOff 0x1
#define global htmlWrapSoft 0x2
#define global htmlWrapHard 0x3
#define global htmlWrap_Max 0x7FFFFFFF