Status: Unterschied zwischen den Versionen
Aus API-Wiki
Zeile 1: | Zeile 1: | ||
Standardrückgabe aller GDI+-Funktionen | Standardrückgabe aller GDI+-Funktionen | ||
− | <vb>Enum Status | + | <<syntaxhighlight lang="vb">>Enum Status |
OK = 0 | OK = 0 | ||
GenericError = 1 | GenericError = 1 | ||
Zeile 24: | Zeile 24: | ||
PropertyNotSupported = 20 | PropertyNotSupported = 20 | ||
ProfileNotFound = 21 | ProfileNotFound = 21 | ||
− | End Enum</vb> | + | End Enum</<syntaxhighlight lang="vb">> |
[[Kategorie:Enum]] | [[Kategorie:Enum]] | ||
[[Kategorie:GDIPlus|Enumerationen]] | [[Kategorie:GDIPlus|Enumerationen]] |
Version vom 5. November 2016, 23:11 Uhr
Standardrückgabe aller GDI+-Funktionen
<<syntaxhighlight lang="vb">>Enum Status
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</<syntaxhighlight lang="vb">>