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

Status

列挙型
基底型i4

メンバー 22

名前10進16進
Ok00x0
GenericError10x1
InvalidParameter20x2
OutOfMemory30x3
ObjectBusy40x4
InsufficientBuffer50x5
NotImplemented60x6
Win32Error70x7
WrongState80x8
Aborted90x9
FileNotFound100xA
ValueOverflow110xB
AccessDenied120xC
UnknownImageFormat130xD
FontFamilyNotFound140xE
FontStyleNotFound150xF
NotTrueTypeFont160x10
UnsupportedGdiplusVersion170x11
GdiplusNotInitialized180x12
PropertyNotFound190x13
PropertyNotSupported200x14
ProfileNotFound210x15

各言語での定義

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

typedef enum Status : int {
    Ok = 0,
    GenericError = 1,
    InvalidParameter = 2,
    OutOfMemory = 3,
    ObjectBusy = 4,
    InsufficientBuffer = 5,
    NotImplemented = 6,
    Win32Error = 7,
    WrongState = 8,
    Aborted = 9,
    FileNotFound = 10,
    ValueOverflow = 11,
    AccessDenied = 12,
    UnknownImageFormat = 13,
    FontFamilyNotFound = 14,
    FontStyleNotFound = 15,
    NotTrueTypeFont = 16,
    UnsupportedGdiplusVersion = 17,
    GdiplusNotInitialized = 18,
    PropertyNotFound = 19,
    PropertyNotSupported = 20,
    ProfileNotFound = 21
} Status;
public enum Status : int
{
    Ok = 0,
    GenericError = 1,
    InvalidParameter = 2,
    OutOfMemory = 3,
    ObjectBusy = 4,
    InsufficientBuffer = 5,
    NotImplemented = 6,
    Win32Error = 7,
    WrongState = 8,
    Aborted = 9,
    FileNotFound = 10,
    ValueOverflow = 11,
    AccessDenied = 12,
    UnknownImageFormat = 13,
    FontFamilyNotFound = 14,
    FontStyleNotFound = 15,
    NotTrueTypeFont = 16,
    UnsupportedGdiplusVersion = 17,
    GdiplusNotInitialized = 18,
    PropertyNotFound = 19,
    PropertyNotSupported = 20,
    ProfileNotFound = 21,
}
Public Enum Status As Integer
    Ok = 0
    GenericError = 1
    InvalidParameter = 2
    OutOfMemory = 3
    ObjectBusy = 4
    InsufficientBuffer = 5
    NotImplemented = 6
    Win32Error = 7
    WrongState = 8
    Aborted = 9
    FileNotFound = 10
    ValueOverflow = 11
    AccessDenied = 12
    UnknownImageFormat = 13
    FontFamilyNotFound = 14
    FontStyleNotFound = 15
    NotTrueTypeFont = 16
    UnsupportedGdiplusVersion = 17
    GdiplusNotInitialized = 18
    PropertyNotFound = 19
    PropertyNotSupported = 20
    ProfileNotFound = 21
End Enum
import enum

class Status(enum.IntEnum):
    Ok = 0
    GenericError = 1
    InvalidParameter = 2
    OutOfMemory = 3
    ObjectBusy = 4
    InsufficientBuffer = 5
    NotImplemented = 6
    Win32Error = 7
    WrongState = 8
    Aborted = 9
    FileNotFound = 10
    ValueOverflow = 11
    AccessDenied = 12
    UnknownImageFormat = 13
    FontFamilyNotFound = 14
    FontStyleNotFound = 15
    NotTrueTypeFont = 16
    UnsupportedGdiplusVersion = 17
    GdiplusNotInitialized = 18
    PropertyNotFound = 19
    PropertyNotSupported = 20
    ProfileNotFound = 21
// Status
pub const Ok: i32 = 0;
pub const GenericError: i32 = 1;
pub const InvalidParameter: i32 = 2;
pub const OutOfMemory: i32 = 3;
pub const ObjectBusy: i32 = 4;
pub const InsufficientBuffer: i32 = 5;
pub const NotImplemented: i32 = 6;
pub const Win32Error: i32 = 7;
pub const WrongState: i32 = 8;
pub const Aborted: i32 = 9;
pub const FileNotFound: i32 = 10;
pub const ValueOverflow: i32 = 11;
pub const AccessDenied: i32 = 12;
pub const UnknownImageFormat: i32 = 13;
pub const FontFamilyNotFound: i32 = 14;
pub const FontStyleNotFound: i32 = 15;
pub const NotTrueTypeFont: i32 = 16;
pub const UnsupportedGdiplusVersion: i32 = 17;
pub const GdiplusNotInitialized: i32 = 18;
pub const PropertyNotFound: i32 = 19;
pub const PropertyNotSupported: i32 = 20;
pub const ProfileNotFound: i32 = 21;
// Status
const (
	Ok int32 = 0
	GenericError int32 = 1
	InvalidParameter int32 = 2
	OutOfMemory int32 = 3
	ObjectBusy int32 = 4
	InsufficientBuffer int32 = 5
	NotImplemented int32 = 6
	Win32Error int32 = 7
	WrongState int32 = 8
	Aborted int32 = 9
	FileNotFound int32 = 10
	ValueOverflow int32 = 11
	AccessDenied int32 = 12
	UnknownImageFormat int32 = 13
	FontFamilyNotFound int32 = 14
	FontStyleNotFound int32 = 15
	NotTrueTypeFont int32 = 16
	UnsupportedGdiplusVersion int32 = 17
	GdiplusNotInitialized int32 = 18
	PropertyNotFound int32 = 19
	PropertyNotSupported int32 = 20
	ProfileNotFound int32 = 21
)
const
  Ok = 0;
  GenericError = 1;
  InvalidParameter = 2;
  OutOfMemory = 3;
  ObjectBusy = 4;
  InsufficientBuffer = 5;
  NotImplemented = 6;
  Win32Error = 7;
  WrongState = 8;
  Aborted = 9;
  FileNotFound = 10;
  ValueOverflow = 11;
  AccessDenied = 12;
  UnknownImageFormat = 13;
  FontFamilyNotFound = 14;
  FontStyleNotFound = 15;
  NotTrueTypeFont = 16;
  UnsupportedGdiplusVersion = 17;
  GdiplusNotInitialized = 18;
  PropertyNotFound = 19;
  PropertyNotSupported = 20;
  ProfileNotFound = 21;
// Status
pub const Ok: i32 = 0;
pub const GenericError: i32 = 1;
pub const InvalidParameter: i32 = 2;
pub const OutOfMemory: i32 = 3;
pub const ObjectBusy: i32 = 4;
pub const InsufficientBuffer: i32 = 5;
pub const NotImplemented: i32 = 6;
pub const Win32Error: i32 = 7;
pub const WrongState: i32 = 8;
pub const Aborted: i32 = 9;
pub const FileNotFound: i32 = 10;
pub const ValueOverflow: i32 = 11;
pub const AccessDenied: i32 = 12;
pub const UnknownImageFormat: i32 = 13;
pub const FontFamilyNotFound: i32 = 14;
pub const FontStyleNotFound: i32 = 15;
pub const NotTrueTypeFont: i32 = 16;
pub const UnsupportedGdiplusVersion: i32 = 17;
pub const GdiplusNotInitialized: i32 = 18;
pub const PropertyNotFound: i32 = 19;
pub const PropertyNotSupported: i32 = 20;
pub const ProfileNotFound: i32 = 21;
const
  Ok* = 0
  GenericError* = 1
  InvalidParameter* = 2
  OutOfMemory* = 3
  ObjectBusy* = 4
  InsufficientBuffer* = 5
  NotImplemented* = 6
  Win32Error* = 7
  WrongState* = 8
  Aborted* = 9
  FileNotFound* = 10
  ValueOverflow* = 11
  AccessDenied* = 12
  UnknownImageFormat* = 13
  FontFamilyNotFound* = 14
  FontStyleNotFound* = 15
  NotTrueTypeFont* = 16
  UnsupportedGdiplusVersion* = 17
  GdiplusNotInitialized* = 18
  PropertyNotFound* = 19
  PropertyNotSupported* = 20
  ProfileNotFound* = 21
enum Status : int {
    Ok = 0,
    GenericError = 1,
    InvalidParameter = 2,
    OutOfMemory = 3,
    ObjectBusy = 4,
    InsufficientBuffer = 5,
    NotImplemented = 6,
    Win32Error = 7,
    WrongState = 8,
    Aborted = 9,
    FileNotFound = 10,
    ValueOverflow = 11,
    AccessDenied = 12,
    UnknownImageFormat = 13,
    FontFamilyNotFound = 14,
    FontStyleNotFound = 15,
    NotTrueTypeFont = 16,
    UnsupportedGdiplusVersion = 17,
    GdiplusNotInitialized = 18,
    PropertyNotFound = 19,
    PropertyNotSupported = 20,
    ProfileNotFound = 21,
}
#define global Ok                        0x0
#define global GenericError              0x1
#define global InvalidParameter          0x2
#define global OutOfMemory               0x3
#define global ObjectBusy                0x4
#define global InsufficientBuffer        0x5
#define global NotImplemented            0x6
#define global Win32Error                0x7
#define global WrongState                0x8
#define global Aborted                   0x9
#define global FileNotFound              0xA
#define global ValueOverflow             0xB
#define global AccessDenied              0xC
#define global UnknownImageFormat        0xD
#define global FontFamilyNotFound        0xE
#define global FontStyleNotFound         0xF
#define global NotTrueTypeFont           0x10
#define global UnsupportedGdiplusVersion 0x11
#define global GdiplusNotInitialized     0x12
#define global PropertyNotFound          0x13
#define global PropertyNotSupported      0x14
#define global ProfileNotFound           0x15