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

htmlRules

列挙型
基底型i4

メンバー 7

名前10進16進
htmlRulesNotSet00x0
htmlRulesnone10x1
htmlRulesgroups20x2
htmlRulesrows30x3
htmlRulescols40x4
htmlRulesall50x5
htmlRules_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum htmlRules : int {
    htmlRulesNotSet = 0,
    htmlRulesnone = 1,
    htmlRulesgroups = 2,
    htmlRulesrows = 3,
    htmlRulescols = 4,
    htmlRulesall = 5,
    htmlRules_Max = 2147483647
} htmlRules;
public enum htmlRules : int
{
    htmlRulesNotSet = 0,
    htmlRulesnone = 1,
    htmlRulesgroups = 2,
    htmlRulesrows = 3,
    htmlRulescols = 4,
    htmlRulesall = 5,
    htmlRules_Max = 2147483647,
}
Public Enum htmlRules As Integer
    htmlRulesNotSet = 0
    htmlRulesnone = 1
    htmlRulesgroups = 2
    htmlRulesrows = 3
    htmlRulescols = 4
    htmlRulesall = 5
    htmlRules_Max = 2147483647
End Enum
import enum

class htmlRules(enum.IntEnum):
    htmlRulesNotSet = 0
    htmlRulesnone = 1
    htmlRulesgroups = 2
    htmlRulesrows = 3
    htmlRulescols = 4
    htmlRulesall = 5
    htmlRules_Max = 2147483647
// htmlRules
pub const htmlRulesNotSet: i32 = 0;
pub const htmlRulesnone: i32 = 1;
pub const htmlRulesgroups: i32 = 2;
pub const htmlRulesrows: i32 = 3;
pub const htmlRulescols: i32 = 4;
pub const htmlRulesall: i32 = 5;
pub const htmlRules_Max: i32 = 2147483647;
// htmlRules
const (
	htmlRulesNotSet int32 = 0
	htmlRulesnone int32 = 1
	htmlRulesgroups int32 = 2
	htmlRulesrows int32 = 3
	htmlRulescols int32 = 4
	htmlRulesall int32 = 5
	htmlRules_Max int32 = 2147483647
)
const
  htmlRulesNotSet = 0;
  htmlRulesnone = 1;
  htmlRulesgroups = 2;
  htmlRulesrows = 3;
  htmlRulescols = 4;
  htmlRulesall = 5;
  htmlRules_Max = 2147483647;
// htmlRules
pub const htmlRulesNotSet: i32 = 0;
pub const htmlRulesnone: i32 = 1;
pub const htmlRulesgroups: i32 = 2;
pub const htmlRulesrows: i32 = 3;
pub const htmlRulescols: i32 = 4;
pub const htmlRulesall: i32 = 5;
pub const htmlRules_Max: i32 = 2147483647;
const
  htmlRulesNotSet* = 0
  htmlRulesnone* = 1
  htmlRulesgroups* = 2
  htmlRulesrows* = 3
  htmlRulescols* = 4
  htmlRulesall* = 5
  htmlRules_Max* = 2147483647
enum htmlRules : int {
    htmlRulesNotSet = 0,
    htmlRulesnone = 1,
    htmlRulesgroups = 2,
    htmlRulesrows = 3,
    htmlRulescols = 4,
    htmlRulesall = 5,
    htmlRules_Max = 2147483647,
}
#define global htmlRulesNotSet 0x0
#define global htmlRulesnone   0x1
#define global htmlRulesgroups 0x2
#define global htmlRulesrows   0x3
#define global htmlRulescols   0x4
#define global htmlRulesall    0x5
#define global htmlRules_Max   0x7FFFFFFF