ホーム › Graphics.GdiPlus › Status
Status
列挙型メンバー 22
| 名前 | 10進 | 16進 |
|---|---|---|
| Ok | 0 | 0x0 |
| GenericError | 1 | 0x1 |
| InvalidParameter | 2 | 0x2 |
| OutOfMemory | 3 | 0x3 |
| ObjectBusy | 4 | 0x4 |
| InsufficientBuffer | 5 | 0x5 |
| NotImplemented | 6 | 0x6 |
| Win32Error | 7 | 0x7 |
| WrongState | 8 | 0x8 |
| Aborted | 9 | 0x9 |
| FileNotFound | 10 | 0xA |
| ValueOverflow | 11 | 0xB |
| AccessDenied | 12 | 0xC |
| UnknownImageFormat | 13 | 0xD |
| FontFamilyNotFound | 14 | 0xE |
| FontStyleNotFound | 15 | 0xF |
| NotTrueTypeFont | 16 | 0x10 |
| UnsupportedGdiplusVersion | 17 | 0x11 |
| GdiplusNotInitialized | 18 | 0x12 |
| PropertyNotFound | 19 | 0x13 |
| PropertyNotSupported | 20 | 0x14 |
| ProfileNotFound | 21 | 0x15 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 21enum 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