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