PMS32 Online- Hilfereferenz

MY.GDI.DRAWING.DRAWING2D.MATRIX

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


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


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

Memberliste von Matrix


Liste der Methoden von Matrix


Clone() - Duplikat erzeugen

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

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

Multiply() - GDI Method or Property

Rückgabe:[VOID], Multiplies this Matrix object by the specified Matrix object by prepending the specified Matrix.
Hilfeinformation
Rückgabe:[VOID], Multiplies this Matrix object by the specified Matrix object by prepending the specified Matrix.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.Matrix.Multiply(toMatrix AS xfcMatrix, tiOrder AS EnumMatrixOrder)
VOID = My.GDI.Drawing.Drawing2D.Matrix.Multiply(toMatrix,tiOrder)
Codeinformation


Reset() - GDI Method or Property

Rückgabe:[VOID], Resets this Matrix object to have the elements of the identity matrix.
Hilfeinformation
Rückgabe:[VOID], Resets this Matrix object to have the elements of the identity matrix.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.Matrix.Reset()
Codeinformation


Rotate() - GDI Method or Property

Rückgabe:[VOID], Applies a clockwise rotation of the specified angle about the origin to this Matrix object.
Hilfeinformation
Rückgabe:[VOID], Applies a clockwise rotation of the specified angle about the origin to this Matrix object.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.Matrix.Rotate(tnAngle, tiOrder AS EnumMatrixOrder)
VOID = My.GDI.Drawing.Drawing2D.Matrix.Rotate(tnAngle,tiOrder)
Codeinformation


RotateAt() - GDI Method or Property

Rückgabe:[VOID], Applies a clockwise rotation about the specified point to this Matrix object by prepending the rotation.
Hilfeinformation
Rückgabe:[VOID], Applies a clockwise rotation about the specified point to this Matrix object by prepending the rotation.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.Matrix.RotateAt(tnAngle, toPoint AS xfcPointF, tiOrder AS EnumMatrixOrder)
VOID = My.GDI.Drawing.Drawing2D.Matrix.RotateAt(tnAngle,toPoint,tiOrder)
Codeinformation


Scale() - GDI Method or Property

Rückgabe:[VOID], Applies the specified scale vector to this Matrix object by prepending the scale vector.
Hilfeinformation
Rückgabe:[VOID], Applies the specified scale vector to this Matrix object by prepending the scale vector.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.Matrix.Scale(tnScaleX, tnScaleY, tiOrder AS EnumMatrixOrder)
VOID = My.GDI.Drawing.Drawing2D.Matrix.Scale(tnScaleX,tnScaleY,tiOrder)
Codeinformation


Shear() - GDI Method or Property

Rückgabe:[VOID], Applies the specified shear vector to this Matrix by prepending the shear vector.
Hilfeinformation
Rückgabe:[VOID], Applies the specified shear vector to this Matrix by prepending the shear vector.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.Matrix.Shear(tnShearX, tnShearY, tiOrder AS EnumMatrixOrder)
VOID = My.GDI.Drawing.Drawing2D.Matrix.Shear(tnShearX,tnShearY,tiOrder)
Codeinformation


TransformPoints() - GDI Method or Property

Rückgabe:[VOID], Applies the geometric transform this Matrix object represents to an array of points.
Hilfeinformation
Rückgabe:[VOID], Applies the geometric transform this Matrix object represents to an array of points.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.Matrix.TransformPoints(taoPts AS xfcPoint)
VOID = My.GDI.Drawing.Drawing2D.Matrix.TransformPoints(taoPts)
Codeinformation


TransformVectors() - GDI Method or Property

Rückgabe:[VOID], Multiplies each vector in an array by the matrix. The translation elements of this matrix (third row) are ignored.
Hilfeinformation
Rückgabe:[VOID], Multiplies each vector in an array by the matrix. The translation elements of this matrix (third row) are ignored.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.Matrix.TransformVectors(taoPts AS xfcPoint)
VOID = My.GDI.Drawing.Drawing2D.Matrix.TransformVectors(taoPts)
Codeinformation


Translate() - GDI Method or Property

Rückgabe:[VOID], Applies the specified translation vector to this Matrix object by prepending the translation vector.
Hilfeinformation
Rückgabe:[VOID], Applies the specified translation vector to this Matrix object by prepending the translation vector.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.Matrix.Translate(tnOffsetX, tnOffsetY, tiOrder AS EnumMatrixOrder)
VOID = My.GDI.Drawing.Drawing2D.Matrix.Translate(tnOffsetX,tnOffsetY,tiOrder)
Codeinformation


Liste der Properties von Matrix


BaseName - Basisname

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

Aufrufinformation
Number = My.GDI.Drawing.Drawing2D.Matrix.BaseName
Codeinformation
WAIT WINDOW My.GDI.Drawing.Drawing2D.Matrix.BaseName

IsIdentity - GDI Method or Property

Gets a value indicating whether this Matrix object is the identity matrix.
Hilfeinformation
Gets a value indicating whether this Matrix object is the identity matrix.

Aufrufinformation
Number = My.GDI.Drawing.Drawing2D.Matrix.IsIdentity
Codeinformation


IsInvertible - GDI Method or Property

Gets a value indicating whether this Matrix object is invertible.
Hilfeinformation
Gets a value indicating whether this Matrix object is invertible.

Aufrufinformation
Number = My.GDI.Drawing.Drawing2D.Matrix.IsInvertible
Codeinformation


OffsetX - GDI Method or Property

Gets the x translation value (the dx value, or the element in the third row and first column) of this Matrix object.
Hilfeinformation
Gets the x translation value (the dx value, or the element in the third row and first column) of this Matrix object.

Aufrufinformation
Object = My.GDI.Drawing.Drawing2D.Matrix.OffsetX
Codeinformation


OffsetY - GDI Method or Property

Gets the y translation value (the dy value, or the element in the third row and second column) of this Matrix.
Hilfeinformation
Gets the y translation value (the dy value, or the element in the third row and second column) of this Matrix.

Aufrufinformation
Object = My.GDI.Drawing.Drawing2D.Matrix.OffsetY
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.Drawing2D.Matrix.cMethod
Codeinformation
*/ Abruf...
WAIT WINDOW My.GDI.Drawing.Drawing2D.Matrix.cMethod

lastresult -

Letztes Ergebnis
Hilfeinformation

Aufrufinformation
Boolean = My.GDI.Drawing.Drawing2D.Matrix.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.Drawing2D.Matrix.nError
Codeinformation
WAIT WINDOW My.GDI.Drawing.Drawing2D.Matrix.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.Drawing2D.Matrix.nLine
Codeinformation
WAIT WINDOW My.GDI.Drawing.Drawing2D.Matrix.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