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

svgChannel

列挙型
基底型i4

メンバー 6

名前10進16進
SVG_CHANNEL_UNKNOWN00x0
SVG_CHANNEL_R10x1
SVG_CHANNEL_G20x2
SVG_CHANNEL_B30x3
SVG_CHANNEL_A40x4
svgChannel_Max21474836470x7FFFFFFF

各言語での定義

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