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

EPrintTicketScope

列挙型
基底型i4

メンバー 3

名前10進16進
kPTPageScope00x0
kPTDocumentScope10x1
kPTJobScope20x2

各言語での定義

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

typedef enum EPrintTicketScope : int {
    kPTPageScope = 0,
    kPTDocumentScope = 1,
    kPTJobScope = 2
} EPrintTicketScope;
public enum EPrintTicketScope : int
{
    kPTPageScope = 0,
    kPTDocumentScope = 1,
    kPTJobScope = 2,
}
Public Enum EPrintTicketScope As Integer
    kPTPageScope = 0
    kPTDocumentScope = 1
    kPTJobScope = 2
End Enum
import enum

class EPrintTicketScope(enum.IntEnum):
    kPTPageScope = 0
    kPTDocumentScope = 1
    kPTJobScope = 2
// EPrintTicketScope
pub const kPTPageScope: i32 = 0;
pub const kPTDocumentScope: i32 = 1;
pub const kPTJobScope: i32 = 2;
// EPrintTicketScope
const (
	kPTPageScope int32 = 0
	kPTDocumentScope int32 = 1
	kPTJobScope int32 = 2
)
const
  kPTPageScope = 0;
  kPTDocumentScope = 1;
  kPTJobScope = 2;
// EPrintTicketScope
pub const kPTPageScope: i32 = 0;
pub const kPTDocumentScope: i32 = 1;
pub const kPTJobScope: i32 = 2;
const
  kPTPageScope* = 0
  kPTDocumentScope* = 1
  kPTJobScope* = 2
enum EPrintTicketScope : int {
    kPTPageScope = 0,
    kPTDocumentScope = 1,
    kPTJobScope = 2,
}
#define global kPTPageScope     0x0
#define global kPTDocumentScope 0x1
#define global kPTJobScope      0x2