PMS32 Online- Hilfereferenz

MY.GDI.DRAWING.BITMAP

Bitmap - Behandlung von Bitmaps


Hilfe: GDI Method or Property
Behandlung von Bitmaps


Code: GDI Method or Property
*/ Kurzbeispiel für den Zugriff auf diese Struktur
*/ Der Zugriff erfolgt über: My.GDI.Drawing.Bitmap
*/ Wird dieses Objekt in einem REPLACE oder einer Schleife SCAN ... ENDSCAN | FOR ... NEXT benötigt
*/ so sollte vor der Schleife die Objektstruktur in eine Variable geholt werden!
*/ Die Ausführungsgeschwindigkeit wird dadurch sehr vergrößert!
*/ Beispiel:
*/ Definieren einer LOKALEN Variablen
LOCAL loBitmap AS My.GDI.Drawing.Bitmap
*/ Setzen der Variablen
loBitmap = My.GDI.Drawing.Bitmap
*/ Jetzt erst die Schleifen durchlaufen... man beachte ALL, dass können ne Menge Sätze sein...
REPLACE ALL Feldname1 WITH loBitmap.Function1(),Feldname2 WITH loBitmap.Function1(), ...
*/ Oder in einer Schleife...
SCAN
	lvValue = loBitmap.Function(Alias.Spalte) + 25
	lvValue = loBitmap.Function2(m.lvValue)
	REPLACE Feldname WITH m.lvValue,...
ENDSCAN
*/ Es sind auch geschachtelte Aufrufe möglich...

Memberliste von Bitmap


Liste der Methoden von Bitmap


ApplyColorMatrix() - GDI Method or Property

Rückgabe:[VOID], Aplies the recived ColorMatrix to the current image
Hilfeinformation
Rückgabe:[VOID], Aplies the recived ColorMatrix to the current image

Aufrufinformation
VOID = My.GDI.Drawing.Bitmap.ApplyColorMatrix(toClrMatrix AS xfcColorMatrix, tiFormat AS EnumPixelFormat)
VOID = My.GDI.Drawing.Bitmap.ApplyColorMatrix(toClrMatrix,tiFormat)
Codeinformation


Clone() - Duplikat erzeugen

Erzeugt ein Duplikat von sich selbst.
Hilfeinformation
Erzeugt ein Duplikat von sich selbst.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.Clone(toRect AS xfcRectangle, tiFormat AS EnumPixelFormat)
Object = My.GDI.Drawing.Bitmap.Clone(toRect,tiFormat)
Codeinformation
LOCAL loCone AS My.GDI.Drawing.Bitmap
*/ Erzeugt einen Klon von sich selbst...
loCone = My.GDI.Drawing.Bitmap.Clone()

Dispose() - GDI Method or Property

Rückgabe:[Boolean], RELEASE dieses Objektes durchführen
Hilfeinformation
Rückgabe:[Boolean], RELEASE dieses Objektes durchführen

Aufrufinformation
Boolean = My.GDI.Drawing.Bitmap.Dispose()
Codeinformation


Equals() - Objektvergleich

Vergleicht zwei Objekte und gibt .T. zurück wenn übereinstimmend
Hilfeinformation
Vergleicht zwei Objekte und gibt .T. zurück wenn übereinstimmend

Aufrufinformation
Boolean = My.GDI.Drawing.Bitmap.Equals(toObject1, toObject2)
Boolean = My.GDI.Drawing.Bitmap.Equals(toObject1,toObject2)
Codeinformation


FromClipBoard() - GDI Method or Property

Rückgabe:[Object], Creates a Bitmap from the clipboard data
Hilfeinformation
Rückgabe:[Object], Creates a Bitmap from the clipboard data

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.FromClipBoard()
Codeinformation


FromFile() - GDI Method or Property

Rückgabe:[Object], Creates an Image object from the specified file.
Hilfeinformation
Rückgabe:[Object], Creates an Image object from the specified file.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.FromFile(tcFilename, tlUseEmbeddedColorManagement)
Object = My.GDI.Drawing.Bitmap.FromFile(tcFilename,tlUseEmbeddedColorManagement)
Codeinformation


FromHBitMap() - GDI Method or Property

Rückgabe:[Object], Creates a Bitmap object from a Windows handle.
Hilfeinformation
Rückgabe:[Object], Creates a Bitmap object from a Windows handle.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.FromHBitMap(tHBitmap AS IntPtr, tHPalette AS IntPtr)
Object = My.GDI.Drawing.Bitmap.FromHBitMap(tHBitmap,tHPalette)
Codeinformation


FromHIcon() - GDI Method or Property

Rückgabe:[Object], Creates a Bitmap from a Windows handle to an icon.
Hilfeinformation
Rückgabe:[Object], Creates a Bitmap from a Windows handle to an icon.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.FromHIcon(tHIcon AS IntPtr)
Object = My.GDI.Drawing.Bitmap.FromHIcon(tHIcon)
Codeinformation


FromResource() - GDI Method or Property

Rückgabe:[Object], Creates a Bitmap object from the specified Windows resource.
Hilfeinformation
Rückgabe:[Object], Creates a Bitmap object from the specified Windows resource.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.FromResource(tHInstance AS IntPtr, tcBitmapName)
Object = My.GDI.Drawing.Bitmap.FromResource(tHInstance,tcBitmapName)
Codeinformation


FromScreen() - GDI Method or Property

Rückgabe:[Object], Captures the window specified by the Hwnd
Hilfeinformation
Rückgabe:[Object], Captures the window specified by the Hwnd

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.FromScreen(tHWnd, tiX, tiY, tiWidth, tiHeight, tlEnsureVisible)
Object = My.GDI.Drawing.Bitmap.FromScreen(tHWnd,tiX,tiY,tiWidth,tiHeight,tlEnsureVisible)
Codeinformation


FromStream() - GDI Method or Property

Rückgabe:[Object], Creates an Image object from the specified data stream.
Hilfeinformation
Rückgabe:[Object], Creates an Image object from the specified data stream.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.FromStream(toStream AS xfcStream, tlUseEmbeddedColorManagement)
Object = My.GDI.Drawing.Bitmap.FromStream(toStream,tlUseEmbeddedColorManagement)
Codeinformation


FromVarbinary() - GDI Method or Property

Rückgabe:[Object], Creates an Image object from the specified VarBinary string.
Hilfeinformation
Rückgabe:[Object], Creates an Image object from the specified VarBinary string.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.FromVarbinary(tqBinary, tlUseEmbeddedColorManagement)
Object = My.GDI.Drawing.Bitmap.FromVarbinary(tqBinary,tlUseEmbeddedColorManagement)
Codeinformation


GetBounds() - GDI Method or Property

Rückgabe:[Object], Gets a bounding rectangle in the specified units for this Image object.
Hilfeinformation
Rückgabe:[Object], Gets a bounding rectangle in the specified units for this Image object.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.GetBounds(tiPageUnit AS @EnumGraphicsUnit)
Object = My.GDI.Drawing.Bitmap.GetBounds(@tiPageUnit)
Codeinformation


GetEncoderParameterList() - GDI Method or Property

Rückgabe:[Object], Returns information about the parameters supported by the specified image encoder.
Hilfeinformation
Rückgabe:[Object], Returns information about the parameters supported by the specified image encoder.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.GetEncoderParameterList(toEncoder AS xfcGuid)
Object = My.GDI.Drawing.Bitmap.GetEncoderParameterList(toEncoder)
Codeinformation


GetFrameCount() - GDI Method or Property

Rückgabe:[Integer], Returns the number of frames of the specified dimension.
Hilfeinformation
Rückgabe:[Integer], Returns the number of frames of the specified dimension.

Aufrufinformation
Integer = My.GDI.Drawing.Bitmap.GetFrameCount(toDimension AS xfcFrameDimension)
Integer = My.GDI.Drawing.Bitmap.GetFrameCount(toDimension)
Codeinformation


GetHandle() - GDI Method or Property

Rückgabe:[Boolean], Gibt das Handle zurück
Hilfeinformation
Rückgabe:[Boolean], Gibt das Handle zurück

Aufrufinformation
Boolean = My.GDI.Drawing.Bitmap.GetHandle()
Codeinformation


GetHashCode() - Schlüssel zurückgeben

Gibt einen Schlüssel für die GDI-Klasse zurück
Hilfeinformation
Gibt einen Schlüssel für die GDI-Klasse zurück

Aufrufinformation
String = My.GDI.Drawing.Bitmap.GetHashCode(toObject AS Object)
String = My.GDI.Drawing.Bitmap.GetHashCode(toObject)
Codeinformation
LOCAL lcString AS String
*/ Rückgabe eines eindeutigen Suchbegriffs
lcString = My.GDI.Drawing.Bitmap.GetHashCode()
=MESSAGEBOX(m.lcString,64,"HashCode...")

GetHbitmap() - GDI Method or Property

Rückgabe:[Integer], Creates a GDI bitmap object from a GDI+ Bitmap object.
Hilfeinformation
Rückgabe:[Integer], Creates a GDI bitmap object from a GDI+ Bitmap object.

Aufrufinformation
Integer = My.GDI.Drawing.Bitmap.GetHbitmap(toBackground AS xfcColor)
Integer = My.GDI.Drawing.Bitmap.GetHbitmap(toBackground)
Codeinformation


GetHicon() - GDI Method or Property

Rückgabe:[Integer], Returns the handle to an icon.
Hilfeinformation
Rückgabe:[Integer], Returns the handle to an icon.

Aufrufinformation
Integer = My.GDI.Drawing.Bitmap.GetHicon()
Codeinformation


GetLastStatus() - GDI Method or Property

Rückgabe:[Boolean], Gibt den letzten Status zurück
Hilfeinformation
Rückgabe:[Boolean], Gibt den letzten Status zurück

Aufrufinformation
Boolean = My.GDI.Drawing.Bitmap.GetLastStatus()
Codeinformation


GetMask() - GDI Method or Property

Rückgabe:[Object], Provides the Mask bitmap from the current image
Hilfeinformation
Rückgabe:[Object], Provides the Mask bitmap from the current image

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.GetMask(tiFormat AS EnumPixelFormat)
Object = My.GDI.Drawing.Bitmap.GetMask(tiFormat)
Codeinformation


GetMonoChrome() - GDI Method or Property

Rückgabe:[Object], Returns a monochrome bitmap (1bpp) of this Image object.
Hilfeinformation
Rückgabe:[Object], Returns a monochrome bitmap (1bpp) of this Image object.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.GetMonoChrome()
Codeinformation


GetPictureVal() - GDI Method or Property

Rückgabe:[String], Returns a String containing the PictureVal of this Image object
Hilfeinformation
Rückgabe:[String], Returns a String containing the PictureVal of this Image object

Aufrufinformation
String = My.GDI.Drawing.Bitmap.GetPictureVal(toEncoder AS xfcImageCodecInfo, toEncoderParams AS xfcEncoderParameters)
String = My.GDI.Drawing.Bitmap.GetPictureVal(toEncoder,toEncoderParams)
Codeinformation


GetPictureValFromHBitMap() - GDI Method or Property

Rückgabe:[String], Returns a String containing the PictureVal of this Image object using the HBitmap GDI technique
Hilfeinformation
Rückgabe:[String], Returns a String containing the PictureVal of this Image object using the HBitmap GDI technique

Aufrufinformation
String = My.GDI.Drawing.Bitmap.GetPictureValFromHBitMap()
Codeinformation


GetPixel() - GDI Method or Property

Rückgabe:[Object], Gets the color of the specified pixel in this Bitmap.
Hilfeinformation
Rückgabe:[Object], Gets the color of the specified pixel in this Bitmap.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.GetPixel(tiX, tiY)
Object = My.GDI.Drawing.Bitmap.GetPixel(tiX,tiY)
Codeinformation


GetPixelFormatSize() - GDI Method or Property

Rückgabe:[Integer], Returns the color depth (number of bits per pixel) of the specified pixel format.
Hilfeinformation
Rückgabe:[Integer], Returns the color depth (number of bits per pixel) of the specified pixel format.

Aufrufinformation
Integer = My.GDI.Drawing.Bitmap.GetPixelFormatSize(tiPixfmt AS EnumPixelFormat)
Integer = My.GDI.Drawing.Bitmap.GetPixelFormatSize(tiPixfmt)
Codeinformation


GetPropertyItem() - Rückgabe einer Property der COM+ Serverklasse

Rückgabe:[Object], Gets the specified property item from this Image object.
Hilfeinformation
Rückgabe:[Object], Gets the specified property item from this Image object.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.GetPropertyItem(tiPropid)
Object = My.GDI.Drawing.Bitmap.GetPropertyItem(tiPropid)
Codeinformation
*/ Beispielcode
*/ Setzen des Startpfades von PMS32 (lokal)
CD C:\PMS32
*/ Aktivieren von My
My = NEWOBJECT("pmsmy","pmsmyhandler.vcx","pmsmyhandler.app")
*/ Setzen des zuletzt gewählten Mandanten
My.cIdx02=My.cIdx02
*/ Abruf einer Property
? My.Clients.Path.GetProperty("cDbfDir")		&& Gibt den Pfad des Mandantenverzeichnisses zurück
? My.Clients.Path.GetProperty("cIcx02")			&& Gibt den Namen des Mandanten zurück
*/ Die obigen Properties können direkt am COM+ Server abgefragt werden!
? My.Clients.Path.cDbfDir
? My.Clients.Path.cIcx02
*/ Diese Properties sind im COM+ Server versteckt:
? My.Clients.Path.GetProperty("_ProgType")		&& Programmtyp des Servers: EXE, MTDLL, STDLL
*/ Je nach COM+ Server kann es weitere versteckte Properties geben!
*/ Die Rückgabe ist .NULL. wenn die Property nicht gefunden werden kann!

GetThumbnailImage() - GDI Method or Property

Rückgabe:[Object], Returns a thumbnail for this Image object.
Hilfeinformation
Rückgabe:[Object], Returns a thumbnail for this Image object.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.GetThumbnailImage(tiThumbWidth, tiThumbHeight,  thCallback AS FuncPtr, tiCallbackData AS IntPtr)
Object = My.GDI.Drawing.Bitmap.GetThumbnailImage(tiThumbWidth,tiThumbHeight,thCallback,tiCallbackData)
Codeinformation


IsAlphaPixelformat() - GDI Method or Property

Rückgabe:[Boolean], Returns a value that indicates whether the pixel format for this Image object contains alpha information.
Hilfeinformation
Rückgabe:[Boolean], Returns a value that indicates whether the pixel format for this Image object contains alpha information.

Aufrufinformation
Boolean = My.GDI.Drawing.Bitmap.IsAlphaPixelformat(tiPixfmt AS EnumPixelFormat)
Boolean = My.GDI.Drawing.Bitmap.IsAlphaPixelformat(tiPixfmt)
Codeinformation


IsCanonicalPixelFormat() - GDI Method or Property

Rückgabe:[Boolean], Returns a value that indicates whether the pixel format is canonical.
Hilfeinformation
Rückgabe:[Boolean], Returns a value that indicates whether the pixel format is canonical.

Aufrufinformation
Boolean = My.GDI.Drawing.Bitmap.IsCanonicalPixelFormat(tiPixfmt AS EnumPixelFormat)
Boolean = My.GDI.Drawing.Bitmap.IsCanonicalPixelFormat(tiPixfmt)
Codeinformation


IsExtendedPixelFormat() - GDI Method or Property

Rückgabe:[Boolean], Returns a value that indicates whether the pixel format is extended.
Hilfeinformation
Rückgabe:[Boolean], Returns a value that indicates whether the pixel format is extended.

Aufrufinformation
Boolean = My.GDI.Drawing.Bitmap.IsExtendedPixelFormat(tiPixfmt AS EnumPixelFormat)
Boolean = My.GDI.Drawing.Bitmap.IsExtendedPixelFormat(tiPixfmt)
Codeinformation


LockBits() - GDI Method or Property

Rückgabe:[Object], Locks a Bitmap object into system memory.
Hilfeinformation
Rückgabe:[Object], Locks a Bitmap object into system memory.

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.LockBits(toRect AS xfcRectangle, tiFlags AS EnumImageLockMode, tiFormat AS EnumPixelFormat)
Object = My.GDI.Drawing.Bitmap.LockBits(toRect,tiFlags,tiFormat)
Codeinformation


MakeTransparent() - GDI Method or Property

Rückgabe:[VOID], Makes the default transparent color transparent for this Bitmap.
Hilfeinformation
Rückgabe:[VOID], Makes the default transparent color transparent for this Bitmap.

Aufrufinformation
VOID = My.GDI.Drawing.Bitmap.MakeTransparent(toTransparentColor AS xfcColor)
VOID = My.GDI.Drawing.Bitmap.MakeTransparent(toTransparentColor)
Codeinformation


MemberwiseClone() - GDI Method or Property

Rückgabe:[Object], erzeugt einen Clone bzw. ein Objekt
Hilfeinformation
Rückgabe:[Object], erzeugt einen Clone bzw. ein Objekt

Aufrufinformation
Object = My.GDI.Drawing.Bitmap.MemberwiseClone()
Codeinformation


New() - GDI Method or Property

Erzeugt ein Objekt von sich selbst.
Hilfeinformation
Erzeugt ein Objekt von sich selbst.

Aufrufinformation
Variant = My.GDI.Drawing.Bitmap.New(tiWidth, tiHeight , tiStride, tiFormat AS EnumPixelFormat, tiScan0 AS IntPtr)
Variant = My.GDI.Drawing.Bitmap.New(tiWidth,tiHeight,tiStride,tiFormat,tiScan0)
Codeinformation


ObjToClientEx() - GDI Method or Property

Rückgabe:[Integer], This replaces OBJTOCLIENT that has bugs with pageframes and SP2
Hilfeinformation
Rückgabe:[Integer], This replaces OBJTOCLIENT that has bugs with pageframes and SP2

Aufrufinformation
Integer = My.GDI.Drawing.Bitmap.ObjToClientEx(toControl, tnType && 1 = Top  2 = Left)
Integer = My.GDI.Drawing.Bitmap.ObjToClientEx(toControl,tnType)
Codeinformation


ReferenceEquals() - GDI Method or Property

Rückgabe:[Boolean], vergleicht zwei Objekte incl. Test auf Objekt
Hilfeinformation
Rückgabe:[Boolean], vergleicht zwei Objekte incl. Test auf Objekt

Aufrufinformation
Boolean = My.GDI.Drawing.Bitmap.ReferenceEquals(toObject1, toObject2)
Boolean = My.GDI.Drawing.Bitmap.ReferenceEquals(toObject1,toObject2)
Codeinformation


RemovePropertyItem() - GDI Method or Property

Rückgabe:[VOID], Removes the specified property item from this Image object.
Hilfeinformation
Rückgabe:[VOID], Removes the specified property item from this Image object.

Aufrufinformation
VOID = My.GDI.Drawing.Bitmap.RemovePropertyItem(tiPropid)
VOID = My.GDI.Drawing.Bitmap.RemovePropertyItem(tiPropid)
Codeinformation


RotateFlip() - GDI Method or Property

Rückgabe:[VOID], This method either rotates, flips, or rotates and flips the Image object.
Hilfeinformation
Rückgabe:[VOID], This method either rotates, flips, or rotates and flips the Image object.

Aufrufinformation
VOID = My.GDI.Drawing.Bitmap.RotateFlip(tiRotateFlipType AS EnumRotateFlipType)
VOID = My.GDI.Drawing.Bitmap.RotateFlip(tiRotateFlipType)
Codeinformation


SelectActiveFrame() - GDI Method or Property

Rückgabe:[Integer], Selects the frame specified by the dimension and index.
Hilfeinformation
Rückgabe:[Integer], Selects the frame specified by the dimension and index.

Aufrufinformation
Integer = My.GDI.Drawing.Bitmap.SelectActiveFrame(toDimension AS xfcFrameDimension, tiFrameIndex)
Integer = My.GDI.Drawing.Bitmap.SelectActiveFrame(toDimension,tiFrameIndex)
Codeinformation


SetPixel() - GDI Method or Property

Rückgabe:[VOID], Sets the color of the specified pixel in this Bitmap object.
Hilfeinformation
Rückgabe:[VOID], Sets the color of the specified pixel in this Bitmap object.

Aufrufinformation
VOID = My.GDI.Drawing.Bitmap.SetPixel(tiX, tiY, toColor AS xfcColor)
VOID = My.GDI.Drawing.Bitmap.SetPixel(tiX,tiY,toColor)
Codeinformation


SetPropertyItem() - GDI Method or Property

Rückgabe:[VOID], Stores a property item (piece of metadata) in this Image object.
Hilfeinformation
Rückgabe:[VOID], Stores a property item (piece of metadata) in this Image object.

Aufrufinformation
VOID = My.GDI.Drawing.Bitmap.SetPropertyItem(toPropitem AS xfcPropertyItem)
VOID = My.GDI.Drawing.Bitmap.SetPropertyItem(toPropitem)
Codeinformation


SetResolution() - GDI Method or Property

Rückgabe:[VOID], Sets the resolution for this Bitmap.
Hilfeinformation
Rückgabe:[VOID], Sets the resolution for this Bitmap.

Aufrufinformation
VOID = My.GDI.Drawing.Bitmap.SetResolution(tnXDpi, tnYDpi)
VOID = My.GDI.Drawing.Bitmap.SetResolution(tnXDpi,tnYDpi)
Codeinformation


ToClipboard() - GDI Method or Property

Rückgabe:[VOID], Sends the Image to the clipboard
Hilfeinformation
Rückgabe:[VOID], Sends the Image to the clipboard

Aufrufinformation
VOID = My.GDI.Drawing.Bitmap.ToClipboard(toImage AS xfcImage)
VOID = My.GDI.Drawing.Bitmap.ToClipboard(toImage)
Codeinformation


ToPrinter() - GDI Method or Property

Rückgabe:[Boolean], Sends the image object to the Printer
Hilfeinformation
Rückgabe:[Boolean], Sends the image object to the Printer

Aufrufinformation
Boolean = My.GDI.Drawing.Bitmap.ToPrinter(tnStretch, tcPrinterName, tnOrientation, tnAlignment)
Boolean = My.GDI.Drawing.Bitmap.ToPrinter(tnStretch,tcPrinterName,tnOrientation,tnAlignment)
Codeinformation


UnlockBits() - GDI Method or Property

Rückgabe:[VOID], Unlocks this Bitmap from system memory.
Hilfeinformation
Rückgabe:[VOID], Unlocks this Bitmap from system memory.

Aufrufinformation
VOID = My.GDI.Drawing.Bitmap.UnlockBits(toBitmapdata AS xfcBitmapData)
VOID = My.GDI.Drawing.Bitmap.UnlockBits(toBitmapdata)
Codeinformation


Liste der Properties von Bitmap


BaseName - Basisname

Name der Basisklasse in der GDI Struktur
Hilfeinformation
Name der Basisklasse in der GDI Struktur

Aufrufinformation
Number = My.GDI.Drawing.Bitmap.BaseName
Codeinformation
WAIT WINDOW My.GDI.Drawing.Bitmap.BaseName

Flags - GDI Method or Property

Gets attribute flags for this Image object.
Hilfeinformation
Gets attribute flags for this Image object.

Aufrufinformation
Number = My.GDI.Drawing.Bitmap.Flags
Codeinformation


FrameDimensionsList - GDI Method or Property

Gets an array of GUIDs that represent the dimensions of frames within this Image object.
Hilfeinformation
Gets an array of GUIDs that represent the dimensions of frames within this Image object.

Aufrufinformation
Number = My.GDI.Drawing.Bitmap.FrameDimensionsList[tcIndex1 AS String | tiIndex1 AS Integer , tiIndex2 AS Integer]
Number = My.GDI.Drawing.Bitmap.FrameDimensionsList[tcIndex1|,tiIndex1,tiIndex2]
Codeinformation


Handle - GDI Method or Property


Hilfeinformation

Aufrufinformation
H = My.GDI.Drawing.Bitmap.Handle
Codeinformation


Height - GDI Method or Property

Specifies the height of an object on the screen.
Hilfeinformation
Specifies the height of an object on the screen.

Aufrufinformation
H = My.GDI.Drawing.Bitmap.Height
Codeinformation


HorizontalResolution - GDI Method or Property

Gets the horizontal resolution, in pixels-per-inch, of this Image object.
Hilfeinformation
Gets the horizontal resolution, in pixels-per-inch, of this Image object.

Aufrufinformation
H = My.GDI.Drawing.Bitmap.HorizontalResolution
Codeinformation


Palette - GDI Method or Property

Gets or sets the color palette used for this Image object.
Hilfeinformation
Gets or sets the color palette used for this Image object.

Aufrufinformation
P = My.GDI.Drawing.Bitmap.Palette
Codeinformation


PhysicalDimension - GDI Method or Property

Gets the width and height of this image.
Hilfeinformation
Gets the width and height of this image.

Aufrufinformation
P = My.GDI.Drawing.Bitmap.PhysicalDimension
Codeinformation


PixelFormat - GDI Method or Property

Gets the pixel format for this Image object.
Hilfeinformation
Gets the pixel format for this Image object.

Aufrufinformation
P = My.GDI.Drawing.Bitmap.PixelFormat
Codeinformation


PropertyIdList - GDI Method or Property


Hilfeinformation

Aufrufinformation
P = My.GDI.Drawing.Bitmap.PropertyIdList[tcIndex1 AS String | tiIndex1 AS Integer , tiIndex2 AS Integer]
P = My.GDI.Drawing.Bitmap.PropertyIdList[tcIndex1|,tiIndex1,tiIndex2]
Codeinformation


PropertyItems - GDI Method or Property

Gets all the property items (pieces of metadata) stored in this Image object.
Hilfeinformation
Gets all the property items (pieces of metadata) stored in this Image object.

Aufrufinformation
P = My.GDI.Drawing.Bitmap.PropertyItems
Codeinformation


RawFormat - GDI Method or Property

Gets the format of this Image object.
Hilfeinformation
Gets the format of this Image object.

Aufrufinformation
R = My.GDI.Drawing.Bitmap.RawFormat
Codeinformation


Size - GDI Method or Property

Gets the width and height, in pixels, of this image.
Hilfeinformation
Gets the width and height, in pixels, of this image.

Aufrufinformation
S = My.GDI.Drawing.Bitmap.Size
Codeinformation


StreamPtr - GDI Method or Property


Hilfeinformation

Aufrufinformation
S = My.GDI.Drawing.Bitmap.StreamPtr
Codeinformation


VerticalResolution - GDI Method or Property

Gets the vertical resolution, in pixels-per-inch, of this Image object.
Hilfeinformation
Gets the vertical resolution, in pixels-per-inch, of this Image object.

Aufrufinformation
String = My.GDI.Drawing.Bitmap.VerticalResolution
Codeinformation


Width - GDI Method or Property

Specifies the width of an object.
Hilfeinformation
Specifies the width of an object.

Aufrufinformation
String = My.GDI.Drawing.Bitmap.Width
Codeinformation


cMethod - Methode des Fehlers

Methode in der der letzte Fehler auftrat.
Hilfeinformation
Methode in der der letzte Fehler auftrat.
Aufbau: [Fehlernummer] [Methode] [Zeilennummer] [Message]

Aufrufinformation
String = My.GDI.Drawing.Bitmap.cMethod
Codeinformation
*/ Abruf...
WAIT WINDOW My.GDI.Drawing.Bitmap.cMethod

lAsTResult -

Letztes Ergebnis
Hilfeinformation

Aufrufinformation
Boolean = My.GDI.Drawing.Bitmap.lAsTResult
Codeinformation


nError - Fehlernummer d. Fehlers

Fehlernummer des letzten Fehlers.
Hilfeinformation
Fehlernummer des letzten Fehlers.
Ist der Wert kleiner null, so handelt es sich um einen logischen Fehler.

Aufrufinformation
Number = My.GDI.Drawing.Bitmap.nError
Codeinformation
WAIT WINDOW My.GDI.Drawing.Bitmap.nError

nLine - Zeilennummer d. Fehlers

Zeilennummer, in der der letzte Fehler auftrat
Hilfeinformation
Zeilennummer, in der der letzte Fehler auftrat

Aufrufinformation
Number = My.GDI.Drawing.Bitmap.nLine
Codeinformation
WAIT WINDOW My.GDI.Drawing.Bitmap.nLine


Siehe auch : Hauptmenü /  Hauptindex /  Such Index /  Cursor Index /  Programm Module /  Tabellen Index /  Tabellenmodule /  Masken Index /  Programmcode Index /  Servicepacks /  My.Struktur /  Funktionen /  Sonstiges Index

Lokale Benutzerhilfe : Meine eigene Hilfe /  Zurück zur PMS32 - Hilfe


Dateiversion:1.0.04#3648 - H.U.DD#SSFF 02.12.2022  Senden Sie Ihren Kommentar zu diesem Thema an das Entwicklungsteam von PMS32  Weitere Informationen finden Sie unter der aktuellen PMS32 WEB-Hilfe
Die Informationen dieser Mitteilung sind vertraulich und nur für Sie bestimmt. Unbefugtes Weiterleiten,  Veröffentlichen, Kopieren usw. sind untersagt und werden gerichtlich verfolgt.  © PMS Compelec GmbH 2022 ® el-Projekt