Win32 API 日本語リファレンス
ホームGraphics.Printing › PrintSchemaSelectionType

PrintSchemaSelectionType

列挙型
基底型i4

メンバー 2

名前10進16進
PrintSchemaSelectionType_PickOne00x0
PrintSchemaSelectionType_PickMany10x1

各言語での定義

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

typedef enum PrintSchemaSelectionType : int {
    PrintSchemaSelectionType_PickOne = 0,
    PrintSchemaSelectionType_PickMany = 1
} PrintSchemaSelectionType;
public enum PrintSchemaSelectionType : int
{
    PrintSchemaSelectionType_PickOne = 0,
    PrintSchemaSelectionType_PickMany = 1,
}
Public Enum PrintSchemaSelectionType As Integer
    PrintSchemaSelectionType_PickOne = 0
    PrintSchemaSelectionType_PickMany = 1
End Enum
import enum

class PrintSchemaSelectionType(enum.IntEnum):
    PrintSchemaSelectionType_PickOne = 0
    PrintSchemaSelectionType_PickMany = 1
// PrintSchemaSelectionType
pub const PrintSchemaSelectionType_PickOne: i32 = 0;
pub const PrintSchemaSelectionType_PickMany: i32 = 1;
// PrintSchemaSelectionType
const (
	PrintSchemaSelectionType_PickOne int32 = 0
	PrintSchemaSelectionType_PickMany int32 = 1
)
const
  PrintSchemaSelectionType_PickOne = 0;
  PrintSchemaSelectionType_PickMany = 1;
// PrintSchemaSelectionType
pub const PrintSchemaSelectionType_PickOne: i32 = 0;
pub const PrintSchemaSelectionType_PickMany: i32 = 1;
const
  PrintSchemaSelectionType_PickOne* = 0
  PrintSchemaSelectionType_PickMany* = 1
enum PrintSchemaSelectionType : int {
    PrintSchemaSelectionType_PickOne = 0,
    PrintSchemaSelectionType_PickMany = 1,
}
#define global PrintSchemaSelectionType_PickOne  0x0
#define global PrintSchemaSelectionType_PickMany 0x1