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