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

htmlWrap

列挙型
基底型i4

メンバー 4

名前10進16進
htmlWrapOff10x1
htmlWrapSoft20x2
htmlWrapHard30x3
htmlWrap_Max21474836470x7FFFFFFF

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2147483647
enum 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