PMS32 Online- Hilfereferenz

MY.GDI.DRAWING.PEN

Pen - Zeichenstift unter Windows


Hilfe: GDI Method or Property
Zeichenstift unter Windows


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

Memberliste von Pen


Liste der Methoden von Pen


Clone() - Duplikat erzeugen

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

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

MultiplyTransform() - GDI Method or Property

Rückgabe:[VOID], Multiplies the transformation matrix for this Pen object by the specified Matrix.
Hilfeinformation
Rückgabe:[VOID], Multiplies the transformation matrix for this Pen object by the specified Matrix.

Aufrufinformation
VOID = My.GDI.Drawing.Pen.MultiplyTransform(toMatrix AS xfcMatrix, tiOrder AS EnumMatrixOrder)
VOID = My.GDI.Drawing.Pen.MultiplyTransform(toMatrix,tiOrder)
Codeinformation


ResetTransform() - GDI Method or Property

Rückgabe:[VOID], Resets the geometric transformation matrix for this Pen object to identity.
Hilfeinformation
Rückgabe:[VOID], Resets the geometric transformation matrix for this Pen object to identity.

Aufrufinformation
VOID = My.GDI.Drawing.Pen.ResetTransform()
Codeinformation


RotateTransform() - GDI Method or Property

Rückgabe:[VOID], Rotates the local geometric transformation by the specified angle. This method prepends the rotation to the transformation.
Hilfeinformation
Rückgabe:[VOID], Rotates the local geometric transformation by the specified angle. This method prepends the rotation to the transformation.

Aufrufinformation
VOID = My.GDI.Drawing.Pen.RotateTransform(tnAngle, tiOrder AS EnumMatrixOrder)
VOID = My.GDI.Drawing.Pen.RotateTransform(tnAngle,tiOrder)
Codeinformation


ScaleTransform() - GDI Method or Property

Rückgabe:[VOID], Scales the local geometric transformation by the specified factors. This method prepends the scaling matrix to the transformation.
Hilfeinformation
Rückgabe:[VOID], Scales the local geometric transformation by the specified factors. This method prepends the scaling matrix to the transformation.

Aufrufinformation
VOID = My.GDI.Drawing.Pen.ScaleTransform(tnSx, tnSy, tiOrder AS EnumMatrixOrder)
VOID = My.GDI.Drawing.Pen.ScaleTransform(tnSx,tnSy,tiOrder)
Codeinformation


SetLineCap() - GDI Method or Property

Rückgabe:[VOID], Sets the values that determine the style of cap used to end lines drawn by this Pen object.
Hilfeinformation
Rückgabe:[VOID], Sets the values that determine the style of cap used to end lines drawn by this Pen object.

Aufrufinformation
VOID = My.GDI.Drawing.Pen.SetLineCap(tiStartCap AS EnumLineCap, tiEndCap AS EnumLineCap, tiDashCap AS EnumDashCap)
VOID = My.GDI.Drawing.Pen.SetLineCap(tiStartCap,tiEndCap,tiDashCap)
Codeinformation


TranslateTransform() - GDI Method or Property

Rückgabe:[VOID], Translates the local geometric transformation by the specified dimensions. This method prepends the translation to the transformation.
Hilfeinformation
Rückgabe:[VOID], Translates the local geometric transformation by the specified dimensions. This method prepends the translation to the transformation.

Aufrufinformation
VOID = My.GDI.Drawing.Pen.TranslateTransform(tnDx, tnDy, tiOrder AS EnumMatrixOrder)
VOID = My.GDI.Drawing.Pen.TranslateTransform(tnDx,tnDy,tiOrder)
Codeinformation


Liste der Properties von Pen


Alignment - GDI Method or Property

Gets or sets the alignment for this Pen object.
Hilfeinformation
Gets or sets the alignment for this Pen object.

Aufrufinformation
Array = My.GDI.Drawing.Pen.Alignment
Codeinformation


Brush - GDI Method or Property

Gets or sets the Brush object that determines attributes of this Pen object.
Hilfeinformation
Gets or sets the Brush object that determines attributes of this Pen object.

Aufrufinformation
Number = My.GDI.Drawing.Pen.Brush
Codeinformation


Color - GDI Method or Property

Gets or sets the color of this Pen object.
Hilfeinformation
Gets or sets the color of this Pen object.

Aufrufinformation
String = My.GDI.Drawing.Pen.Color
Codeinformation


CustomEndCap - GDI Method or Property

Gets or sets a custom cap to use at the end of lines drawn with this Pen object.
Hilfeinformation
Gets or sets a custom cap to use at the end of lines drawn with this Pen object.

Aufrufinformation
String = My.GDI.Drawing.Pen.CustomEndCap
Codeinformation


CustomStartCap - GDI Method or Property

Gets or sets a custom cap to use at the beginning of lines drawn with this Pen object.
Hilfeinformation
Gets or sets a custom cap to use at the beginning of lines drawn with this Pen object.

Aufrufinformation
String = My.GDI.Drawing.Pen.CustomStartCap
Codeinformation


DashCap - GDI Method or Property

Gets or sets the cap style used at the end of the dashes that make up dashed lines drawn with this Pen object.
Hilfeinformation
Gets or sets the cap style used at the end of the dashes that make up dashed lines drawn with this Pen object.

Aufrufinformation
Date = My.GDI.Drawing.Pen.DashCap
Codeinformation


DashOffset - GDI Method or Property

Gets or sets the distance from the start of a line to the beginning of a dash pattern.
Hilfeinformation
Gets or sets the distance from the start of a line to the beginning of a dash pattern.

Aufrufinformation
Date = My.GDI.Drawing.Pen.DashOffset
Codeinformation


DashStyle - GDI Method or Property

Gets or sets the style used for dashed lines drawn with this Pen object.
Hilfeinformation
Gets or sets the style used for dashed lines drawn with this Pen object.

Aufrufinformation
Date = My.GDI.Drawing.Pen.DashStyle
Codeinformation


EndCap - GDI Method or Property

Gets or sets the cap style used at the end of lines drawn with this Pen object.
Hilfeinformation
Gets or sets the cap style used at the end of lines drawn with this Pen object.

Aufrufinformation
E = My.GDI.Drawing.Pen.EndCap
Codeinformation


LineJoin - GDI Method or Property

Gets or sets the join style for the ends of two consecutive lines drawn with this Pen object.
Hilfeinformation
Gets or sets the join style for the ends of two consecutive lines drawn with this Pen object.

Aufrufinformation
Boolean = My.GDI.Drawing.Pen.LineJoin
Codeinformation


MiterLimit - GDI Method or Property

Gets or sets the limit of the thickness of the join on a mitered corner.
Hilfeinformation
Gets or sets the limit of the thickness of the join on a mitered corner.

Aufrufinformation
String = My.GDI.Drawing.Pen.MiterLimit
Codeinformation


PenType - GDI Method or Property

Gets the style of lines drawn with this Pen object.
Hilfeinformation
Gets the style of lines drawn with this Pen object.

Aufrufinformation
P = My.GDI.Drawing.Pen.PenType
Codeinformation


StartCap - GDI Method or Property

Gets or sets the cap style used at the beginning of lines drawn with this Pen object.
Hilfeinformation
Gets or sets the cap style used at the beginning of lines drawn with this Pen object.

Aufrufinformation
S = My.GDI.Drawing.Pen.StartCap
Codeinformation


Transform - GDI Method or Property

Gets or sets the geometric transformation for this Pen object.
Hilfeinformation
Gets or sets the geometric transformation for this Pen object.

Aufrufinformation
DateTime = My.GDI.Drawing.Pen.Transform
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.Pen.cMethod
Codeinformation
*/ Abruf...
WAIT WINDOW My.GDI.Drawing.Pen.cMethod

lastresult -

Letztes Ergebnis
Hilfeinformation

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