PMS32 Online- Hilfereferenz

MY.GDI.DRAWING.DRAWING2D.GRAPHICSPATH

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


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


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

Memberliste von GraphicsPath


Liste der Methoden von GraphicsPath


AddArc() - GDI Method or Property

Rückgabe:[VOID], Appends an elliptical arc to the current figure.
Hilfeinformation
Rückgabe:[VOID], Appends an elliptical arc to the current figure.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddArc(tnX, tnY, tnWidth, tnHeight, tnStartAngle, tnSweepAngle)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddArc(tnX,tnY,tnWidth,tnHeight,tnStartAngle,tnSweepAngle)
Codeinformation


AddBezier() - GDI Method or Property

Rückgabe:[VOID], Adds a cubic Bezier curve to the current figure.
Hilfeinformation
Rückgabe:[VOID], Adds a cubic Bezier curve to the current figure.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddBezier(tnX1, tnY1, tnX2, tnY2, tnX3, tnY3, tnX4, tnY4)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddBezier(tnX1,tnY1,tnX2,tnY2,tnX3,tnY3,tnX4,tnY4)
Codeinformation


AddBeziers() - GDI Method or Property

Rückgabe:[VOID], Adds a sequence of connected cubic Bezier curves to the current figure.
Hilfeinformation
Rückgabe:[VOID], Adds a sequence of connected cubic Bezier curves to the current figure.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddBeziers(taoPoints AS xfcPoint, tlIsFloat)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddBeziers(taoPoints,tlIsFloat)
Codeinformation


AddClosedCurve() - GDI Method or Property

Rückgabe:[VOID], Adds a closed curve to this path. A cardinal spline curve is used because the curve travels through each of the points in the array.
Hilfeinformation
Rückgabe:[VOID], Adds a closed curve to this path. A cardinal spline curve is used because the curve travels through each of the points in the array.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(taoPoints AS xfcPoint, tnTension, tlIsFloat)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddClosedCurve(taoPoints,tnTension,tlIsFloat)
Codeinformation


AddCurve() - GDI Method or Property

Rückgabe:[VOID], Adds a spline curve to the current figure. A cardinal spline curve is used because the curve travels through each of the points in the array.
Hilfeinformation
Rückgabe:[VOID], Adds a spline curve to the current figure. A cardinal spline curve is used because the curve travels through each of the points in the array.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddCurve(taoPoints AS xfcPoint,  tiOffset, tiNumberOfSegments, tnTension,  tlIsFloat)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddCurve(taoPoints,tiOffset,tiNumberOfSegments,tnTension,tlIsFloat)
Codeinformation


AddEllipse() - GDI Method or Property

Rückgabe:[VOID], Adds an ellipse to the current path.
Hilfeinformation
Rückgabe:[VOID], Adds an ellipse to the current path.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddEllipse(tnX, tnY, tnWidth, tnHeight)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddEllipse(tnX,tnY,tnWidth,tnHeight)
Codeinformation


AddLine() - GDI Method or Property

Rückgabe:[VOID], Appends a line segment to this GraphicsPath object.
Hilfeinformation
Rückgabe:[VOID], Appends a line segment to this GraphicsPath object.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddLine(tnX1, tnY1, tnX2, tnY2)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddLine(tnX1,tnY1,tnX2,tnY2)
Codeinformation


AddLines() - GDI Method or Property

Rückgabe:[VOID], Appends a series of connected line segments to the end of this GraphicsPath object.
Hilfeinformation
Rückgabe:[VOID], Appends a series of connected line segments to the end of this GraphicsPath object.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddLines(taoPoints AS xfcPoint, tlIsFloat)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddLines(taoPoints,tlIsFloat)
Codeinformation


AddPath() - GDI Method or Property

Rückgabe:[VOID], Appends the specified GraphicsPath object to this path.
Hilfeinformation
Rückgabe:[VOID], Appends the specified GraphicsPath object to this path.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddPath(toAddingPath AS xfcGraphicsPath, tlConnect)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddPath(toAddingPath,tlConnect)
Codeinformation


AddPie() - GDI Method or Property

Rückgabe:[VOID], Adds the outline of a pie shape to this path.
Hilfeinformation
Rückgabe:[VOID], Adds the outline of a pie shape to this path.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddPie(tnX, tnY, tnWidth, tnHeight, tnStartAngle, tnSweepAngle)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddPie(tnX,tnY,tnWidth,tnHeight,tnStartAngle,tnSweepAngle)
Codeinformation


AddPolygon() - GDI Method or Property

Rückgabe:[VOID], Adds a polygon to this path.
Hilfeinformation
Rückgabe:[VOID], Adds a polygon to this path.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddPolygon(taoPoints AS xfcPoint, tlIsFloat)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddPolygon(taoPoints,tlIsFloat)
Codeinformation


AddRectangle() - GDI Method or Property

Rückgabe:[VOID], Adds a rectangle to this path.
Hilfeinformation
Rückgabe:[VOID], Adds a rectangle to this path.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddRectangle(tnX, tnY, tnWidth, tnHeight)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddRectangle(tnX,tnY,tnWidth,tnHeight)
Codeinformation


AddRectangles() - GDI Method or Property

Rückgabe:[VOID], Adds a series of rectangles to this path.
Hilfeinformation
Rückgabe:[VOID], Adds a series of rectangles to this path.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddRectangles(taoRects AS xfcRectangle, tlIsFloat)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddRectangles(taoRects,tlIsFloat)
Codeinformation


AddString() - GDI Method or Property

Rückgabe:[VOID], Adds a text string to this path.
Hilfeinformation
Rückgabe:[VOID], Adds a text string to this path.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddString(tcS, toFamily AS xfcFontFamily, tiStyle, tnEmSize, toLayoutRect AS xfcRectangle, toFormat AS xfcStringFormat)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.AddString(tcS,toFamily,tiStyle,tnEmSize,toLayoutRect,toFormat)
Codeinformation


ClearMarkers() - GDI Method or Property

Rückgabe:[VOID], Clears all markers from this path.
Hilfeinformation
Rückgabe:[VOID], Clears all markers from this path.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.ClearMarkers()
Codeinformation


Clone() - Duplikat erzeugen

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

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

CloseAllFigures() - GDI Method or Property

Rückgabe:[VOID], Closes all open figures in this path and starts a new figure. It closes each open figure by connecting a line from its endpoint to its starting point.
Hilfeinformation
Rückgabe:[VOID], Closes all open figures in this path and starts a new figure. It closes each open figure by connecting a line from its endpoint to its starting point.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.CloseAllFigures()
Codeinformation


CloseFigure() - GDI Method or Property

Rückgabe:[VOID], Closes the current figure and starts a new figure. If the current figure contains a sequence of connected lines and curves, the method closes the loop by connecting a line from the endpoint to the starting point.
Hilfeinformation
Rückgabe:[VOID], Closes the current figure and starts a new figure. If the current figure contains a sequence of connected lines and curves, the method closes the loop by connecting a line from the endpoint to the starting point.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.CloseFigure()
Codeinformation


Flatten() - GDI Method or Property

Rückgabe:[VOID], Converts each curve in this path into a sequence of connected line segments.
Hilfeinformation
Rückgabe:[VOID], Converts each curve in this path into a sequence of connected line segments.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.Flatten(toMatrix AS xfcMatrix, tnFlatness)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.Flatten(toMatrix,tnFlatness)
Codeinformation


GetBounds() - GDI Method or Property

Rückgabe:[VOID], Returns a rectangle that bounds this GraphicsPath object.
Hilfeinformation
Rückgabe:[VOID], Returns a rectangle that bounds this GraphicsPath object.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.GetBounds(toMatrix AS xfcMatrix, toPen AS xfcPen)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.GetBounds(toMatrix,toPen)
Codeinformation


GetLastPoint() - GDI Method or Property

Rückgabe:[Object], Gets the last point in the PathPoints array of this GraphicsPath object.
Hilfeinformation
Rückgabe:[Object], Gets the last point in the PathPoints array of this GraphicsPath object.

Aufrufinformation
Object = My.GDI.Drawing.Drawing2D.GraphicsPath.GetLastPoint()
Codeinformation


IsOutlineVisible() - GDI Method or Property

Rückgabe:[Boolean], Indicates whether the specified point is contained within (under) the outline of this GraphicsPath object when drawn with the specified Pen object.
Hilfeinformation
Rückgabe:[Boolean], Indicates whether the specified point is contained within (under) the outline of this GraphicsPath object when drawn with the specified Pen object.

Aufrufinformation
Boolean = My.GDI.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(tnX, tnY, toPen AS xfcPen,  toGraphics AS xfcGraphics)
Boolean = My.GDI.Drawing.Drawing2D.GraphicsPath.IsOutlineVisible(tnX,tnY,toPen,toGraphics)
Codeinformation


IsVisible() - GDI Method or Property

Rückgabe:[Boolean], Indicates whether the specified point is contained within this GraphicsPath object.
Hilfeinformation
Rückgabe:[Boolean], Indicates whether the specified point is contained within this GraphicsPath object.

Aufrufinformation
Boolean = My.GDI.Drawing.Drawing2D.GraphicsPath.IsVisible(tnX, tnY, toGraphics AS xfcGraphics)
Boolean = My.GDI.Drawing.Drawing2D.GraphicsPath.IsVisible(tnX,tnY,toGraphics)
Codeinformation


Reset() - GDI Method or Property

Rückgabe:[VOID], Empties the PathPoints and PathTypes arrays and sets the FillMode to Alternate.
Hilfeinformation
Rückgabe:[VOID], Empties the PathPoints and PathTypes arrays and sets the FillMode to Alternate.

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


Reverse() - GDI Method or Property

Rückgabe:[VOID], Reverses the order of points in the PathPoints array of this GraphicsPath object.
Hilfeinformation
Rückgabe:[VOID], Reverses the order of points in the PathPoints array of this GraphicsPath object.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.Reverse()
Codeinformation


SetMarkers() - GDI Method or Property

Rückgabe:[VOID], Sets a marker on this GraphicsPath object.
Hilfeinformation
Rückgabe:[VOID], Sets a marker on this GraphicsPath object.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.SetMarkers()
Codeinformation


StartFigure() - GDI Method or Property

Rückgabe:[VOID], Starts a new figure without closing the current figure. All subsequent points added to the path are added to this new figure.
Hilfeinformation
Rückgabe:[VOID], Starts a new figure without closing the current figure. All subsequent points added to the path are added to this new figure.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.StartFigure()
Codeinformation


Transform() - GDI Method or Property

Rückgabe:[VOID], Applies a transform matrix to this GraphicsPath object.
Hilfeinformation
Rückgabe:[VOID], Applies a transform matrix to this GraphicsPath object.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.Transform(toMatrix AS xfcMatrix)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.Transform(toMatrix)
Codeinformation


Warp() - GDI Method or Property

Rückgabe:[VOID], Applies a warp transform, defined by a rectangle and a parallelogram, to this GraphicsPath object.
Hilfeinformation
Rückgabe:[VOID], Applies a warp transform, defined by a rectangle and a parallelogram, to this GraphicsPath object.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.Warp(taoDestPoints AS xfcPointF, toSrcRect AS xfcRectangleF,  toMatrix AS xfcMatrix,  tiWarpMode AS EnumWarpMode,  tnFlatness)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.Warp(taoDestPoints,toSrcRect,toMatrix,tiWarpMode,tnFlatness)
Codeinformation


Widen() - GDI Method or Property

Rückgabe:[VOID], Replaces this path with curves that enclose the area that is filled when this path is drawn by the specified pen.
Hilfeinformation
Rückgabe:[VOID], Replaces this path with curves that enclose the area that is filled when this path is drawn by the specified pen.

Aufrufinformation
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.Widen(toPen AS xfcPen, toMatrix AS xfcMatrix, tnFlatness)
VOID = My.GDI.Drawing.Drawing2D.GraphicsPath.Widen(toPen,toMatrix,tnFlatness)
Codeinformation


Liste der Properties von GraphicsPath


BaseName - Basisname

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

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

FillMode - GDI Method or Property

Gets or sets a FillMode enumeration that determines how the interiors of shapes in this GraphicsPath object are filled.
Hilfeinformation
Gets or sets a FillMode enumeration that determines how the interiors of shapes in this GraphicsPath object are filled.

Aufrufinformation
Number = My.GDI.Drawing.Drawing2D.GraphicsPath.FillMode
Codeinformation


PathData - GDI Method or Property

Gets a PathData object that encapsulates arrays of points (points) and types (types) for this GraphicsPath object.
Hilfeinformation
Gets a PathData object that encapsulates arrays of points (points) and types (types) for this GraphicsPath object.

Aufrufinformation
P = My.GDI.Drawing.Drawing2D.GraphicsPath.PathData
Codeinformation


PointCount - GDI Method or Property

Gets the number of elements in the PathPoints or the PathTypes array.
Hilfeinformation
Gets the number of elements in the PathPoints or the PathTypes array.

Aufrufinformation
P = My.GDI.Drawing.Drawing2D.GraphicsPath.PointCount
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.GraphicsPath.cMethod
Codeinformation
*/ Abruf...
WAIT WINDOW My.GDI.Drawing.Drawing2D.GraphicsPath.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.Drawing2D.GraphicsPath.nError
Codeinformation
WAIT WINDOW My.GDI.Drawing.Drawing2D.GraphicsPath.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.GraphicsPath.nLine
Codeinformation
WAIT WINDOW My.GDI.Drawing.Drawing2D.GraphicsPath.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