PMS32 Online- Hilfereferenz

MY.GDI.DRAWING.IMAGING.IMAGEATTRIBUTES

ImageAttributes - Diese Member ist nicht genauer definiert. Bitte in der entsprechenden Klasse nachsehen. => xfcImageAttributes


Hilfe: GDI Method or Property
Diese Member ist nicht genauer definiert. Bitte in der entsprechenden Klasse nachsehen. => xfcImageAttributes


Code: GDI Method or Property
*/ Kurzbeispiel für den Zugriff auf diese Struktur
*/ Der Zugriff erfolgt über: My.GDI.Drawing.Imaging.ImageAttributes
*/ 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 loImageAttributes AS My.GDI.Drawing.Imaging.ImageAttributes
*/ Setzen der Variablen
loImageAttributes = My.GDI.Drawing.Imaging.ImageAttributes
*/ Jetzt erst die Schleifen durchlaufen... man beachte ALL, dass können ne Menge Sätze sein...
REPLACE ALL Feldname1 WITH loImageAttributes.Function1(),Feldname2 WITH loImageAttributes.Function1(), ...
*/ Oder in einer Schleife...
SCAN
	lvValue = loImageAttributes.Function(Alias.Spalte) + 25
	lvValue = loImageAttributes.Function2(m.lvValue)
	REPLACE Feldname WITH m.lvValue,...
ENDSCAN
*/ Es sind auch geschachtelte Aufrufe möglich...

Memberliste von ImageAttributes


Liste der Methoden von ImageAttributes


ClearBrushRemapTable() - GDI Method or Property

Rückgabe:[VOID], This method clears the brush color-remap table of this ImageAttributes object.
Hilfeinformation
Rückgabe:[VOID], This method clears the brush color-remap table of this ImageAttributes object.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearBrushRemapTable()
Codeinformation


ClearColorKey() - GDI Method or Property

Rückgabe:[VOID], Clears the color-key (transparency range).
Hilfeinformation
Rückgabe:[VOID], Clears the color-key (transparency range).

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearColorKey(tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearColorKey(tiType)
Codeinformation


ClearColorMatrix() - GDI Method or Property

Rückgabe:[VOID], Clears the color-adjustment matrix.
Hilfeinformation
Rückgabe:[VOID], Clears the color-adjustment matrix.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearColorMatrix(tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearColorMatrix(tiType)
Codeinformation


ClearGamma() - GDI Method or Property

Rückgabe:[VOID], Disables gamma correction.
Hilfeinformation
Rückgabe:[VOID], Disables gamma correction.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearGamma(tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearGamma(tiType)
Codeinformation


ClearNoOp() - GDI Method or Property

Rückgabe:[VOID], Clears the NoOp setting.
Hilfeinformation
Rückgabe:[VOID], Clears the NoOp setting.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearNoOp(tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearNoOp(tiType)
Codeinformation


ClearOutputChannel() - GDI Method or Property

Rückgabe:[VOID], Clears the CMYK output channel setting.
Hilfeinformation
Rückgabe:[VOID], Clears the CMYK output channel setting.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearOutputChannel(tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearOutputChannel(tiType)
Codeinformation


ClearOutputChannelColorProfile() - GDI Method or Property

Rückgabe:[VOID], Clears the output channel color profile setting.
Hilfeinformation
Rückgabe:[VOID], Clears the output channel color profile setting.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearOutputChannelColorProfile(tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearOutputChannelColorProfile(tiType)
Codeinformation


ClearRemapTable() - GDI Method or Property

Rückgabe:[VOID], Clears the color-remap table.
Hilfeinformation
Rückgabe:[VOID], Clears the color-remap table.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearRemapTable(tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearRemapTable(tiType)
Codeinformation


ClearThreshold() - GDI Method or Property

Rückgabe:[VOID], Clears the threshold value.
Hilfeinformation
Rückgabe:[VOID], Clears the threshold value.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearThreshold(tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.ClearThreshold(tiType)
Codeinformation


Clone() - Duplikat erzeugen

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

Aufrufinformation
Object = My.GDI.Drawing.Imaging.ImageAttributes.Clone()
Codeinformation
LOCAL loCone AS My.GDI.Drawing.Imaging.ImageAttributes
*/ Erzeugt einen Klon von sich selbst...
loCone = My.GDI.Drawing.Imaging.ImageAttributes.Clone()

GetAdjustedPalette() - GDI Method or Property

Rückgabe:[VOID], Adjusts the colors in a palette according to the adjustment settings of a specified category.
Hilfeinformation
Rückgabe:[VOID], Adjusts the colors in a palette according to the adjustment settings of a specified category.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.GetAdjustedPalette(toPalette AS xfcColorPalette, tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.GetAdjustedPalette(toPalette,tiType)
Codeinformation


SetBrushRemapTable() - GDI Method or Property

Rückgabe:[VOID], Sets the color-remap table for the brush category.
Hilfeinformation
Rückgabe:[VOID], Sets the color-remap table for the brush category.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetBrushRemapTable(taoMap AS xfcColorMap)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetBrushRemapTable(taoMap)
Codeinformation


SetColorKey() - GDI Method or Property

Rückgabe:[VOID], Sets the color key (transparency range).
Hilfeinformation
Rückgabe:[VOID], Sets the color key (transparency range).

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetColorKey(toColorLow AS xfcColor, toColorHigh AS xfcColor, tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetColorKey(toColorLow,toColorHigh,tiType)
Codeinformation


SetColorMatrices() - GDI Method or Property

Rückgabe:[VOID], Sets the color-adjustment matrix and the grayscale-adjustment matrix.
Hilfeinformation
Rückgabe:[VOID], Sets the color-adjustment matrix and the grayscale-adjustment matrix.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetColorMatrices(toNewColorMatrix AS xfcColorMatrix, toGrayMatrix AS xfcColorMatrix,  tiFlags AS EnumColorMatrixFlag, tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetColorMatrices(toNewColorMatrix,toGrayMatrix,tiFlags,tiType)
Codeinformation


SetColorMatrix() - GDI Method or Property

Rückgabe:[VOID], Sets the color-adjustment matrix.
Hilfeinformation
Rückgabe:[VOID], Sets the color-adjustment matrix.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetColorMatrix(toNewColorMatrix AS xfcColorMatrix,  tiFlags AS EnumColorMatrixFlag, tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetColorMatrix(toNewColorMatrix,tiFlags,tiType)
Codeinformation


SetGamma() - GDI Method or Property

Rückgabe:[VOID], Sets the gamma value.
Hilfeinformation
Rückgabe:[VOID], Sets the gamma value.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetGamma(tnGamma, tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetGamma(tnGamma,tiType)
Codeinformation


SetNoOp() - GDI Method or Property

Rückgabe:[VOID], Turns off color adjustment.
Hilfeinformation
Rückgabe:[VOID], Turns off color adjustment.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetNoOp(tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetNoOp(tiType)
Codeinformation


SetOutputChannel() - GDI Method or Property

Rückgabe:[VOID], Sets the CMYK output channel.
Hilfeinformation
Rückgabe:[VOID], Sets the CMYK output channel.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetOutputChannel(tiFlags AS EnumColorChannelFlag,  tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetOutputChannel(tiFlags,tiType)
Codeinformation


SetOutputChannelColorProfile() - GDI Method or Property

Rückgabe:[VOID], Sets the output channel color-profile file.
Hilfeinformation
Rückgabe:[VOID], Sets the output channel color-profile file.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetOutputChannelColorProfile(tcColorProfileFilename,  tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetOutputChannelColorProfile(tcColorProfileFilename,tiType)
Codeinformation


SetRemapTable() - GDI Method or Property

Rückgabe:[VOID], Sets the color-remap table.
Hilfeinformation
Rückgabe:[VOID], Sets the color-remap table.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetRemapTable(taoColorMap AS xfcColorMap,  tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetRemapTable(taoColorMap,tiType)
Codeinformation


SetThreshold() - GDI Method or Property

Rückgabe:[VOID], Sets the threshold (transparency range).
Hilfeinformation
Rückgabe:[VOID], Sets the threshold (transparency range).

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetThreshold(tnThreshold,  tiType AS EnumColorAdjustType)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetThreshold(tnThreshold,tiType)
Codeinformation


SetWrapMode() - GDI Method or Property

Rückgabe:[VOID], Sets the wrap mode.
Hilfeinformation
Rückgabe:[VOID], Sets the wrap mode.

Aufrufinformation
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetWrapMode(tiMode AS EnumWrapMode,  toColor AS xfcColor, tlClamp)
VOID = My.GDI.Drawing.Imaging.ImageAttributes.SetWrapMode(tiMode,toColor,tlClamp)
Codeinformation


Liste der Properties von ImageAttributes


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.Imaging.ImageAttributes.cMethod
Codeinformation
*/ Abruf...
WAIT WINDOW My.GDI.Drawing.Imaging.ImageAttributes.cMethod

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.Imaging.ImageAttributes.nError
Codeinformation
WAIT WINDOW My.GDI.Drawing.Imaging.ImageAttributes.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.Imaging.ImageAttributes.nLine
Codeinformation
WAIT WINDOW My.GDI.Drawing.Imaging.ImageAttributes.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