PMS32 Online- Hilfereferenz

MY.GDI.DRAWING.REGION

Region - Fläche unter Windows


Hilfe: GDI Method or Property
Fläche unter Windows


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

Memberliste von Region


Liste der Methoden von Region


Clone() - Duplikat erzeugen

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

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

Complement() - GDI Method or Property

Rückgabe:[VOID], Updates this Region object to the portion of the specified RectangleF structure that does not intersect with this Region object.
Hilfeinformation
Rückgabe:[VOID], Updates this Region object to the portion of the specified RectangleF structure that does not intersect with this Region object.

Aufrufinformation
VOID = My.GDI.Drawing.Region.Complement(toPath AS xfcGraphicsPath)
VOID = My.GDI.Drawing.Region.Complement(toPath)
Codeinformation


Exclude() - GDI Method or Property

Rückgabe:[VOID], Updates this Region object to the portion of its interior that does not intersect with the specified Rectangle structure.
Hilfeinformation
Rückgabe:[VOID], Updates this Region object to the portion of its interior that does not intersect with the specified Rectangle structure.

Aufrufinformation
VOID = My.GDI.Drawing.Region.Exclude(toPath AS xfcGraphicsPath)
VOID = My.GDI.Drawing.Region.Exclude(toPath)
Codeinformation


FromHrgn() - GDI Method or Property

Rückgabe:[Object], Initializes a new Region object from a handle to the specified existing GDI region.
Hilfeinformation
Rückgabe:[Object], Initializes a new Region object from a handle to the specified existing GDI region.

Aufrufinformation
Object = My.GDI.Drawing.Region.FromHrgn(tHRgn AS IntPtr)
Object = My.GDI.Drawing.Region.FromHrgn(tHRgn)
Codeinformation


GetBounds() - GDI Method or Property

Rückgabe:[Object], Gets a RectangleF structure that represents a rectangle that bounds this Region object on the drawing surface of a Graphics object.
Hilfeinformation
Rückgabe:[Object], Gets a RectangleF structure that represents a rectangle that bounds this Region object on the drawing surface of a Graphics object.

Aufrufinformation
Object = My.GDI.Drawing.Region.GetBounds(toG AS xfcGraphics)
Object = My.GDI.Drawing.Region.GetBounds(toG)
Codeinformation


GetHrgn() - GDI Method or Property

Rückgabe:[Integer], Returns a Windows handle to this Region object in the specified graphics context.
Hilfeinformation
Rückgabe:[Integer], Returns a Windows handle to this Region object in the specified graphics context.

Aufrufinformation
Integer = My.GDI.Drawing.Region.GetHrgn(toG AS xfcGraphics)
Integer = My.GDI.Drawing.Region.GetHrgn(toG)
Codeinformation


GetRegionData() - GDI Method or Property

Rückgabe:[Object], Returns a RegionData object that represents the information that describes this Region object.
Hilfeinformation
Rückgabe:[Object], Returns a RegionData object that represents the information that describes this Region object.

Aufrufinformation
Object = My.GDI.Drawing.Region.GetRegionData()
Codeinformation


GetRegionScans() - GDI Method or Property

Rückgabe:[Variant], [Array], Returns an array of RectangleF structures that approximate this Region object.
Hilfeinformation
Rückgabe:[Variant], [Array], Returns an array of RectangleF structures that approximate this Region object.

Aufrufinformation
Variant = My.GDI.Drawing.Region.GetRegionScans(toMatrix AS xfcMatrix)
Variant = My.GDI.Drawing.Region.GetRegionScans(toMatrix)
Codeinformation


Intersect() - GDI Method or Property

Rückgabe:[VOID], Updates this Region object to the intersection of itself with the specified Region object.
Hilfeinformation
Rückgabe:[VOID], Updates this Region object to the intersection of itself with the specified Region object.

Aufrufinformation
VOID = My.GDI.Drawing.Region.Intersect(toPath AS xfcGraphicsPath)
VOID = My.GDI.Drawing.Region.Intersect(toPath)
Codeinformation


IsEmpty() - GDI Method or Property

Rückgabe:[Boolean], Tests whether this Region object has an empty interior on the specified drawing surface.
Hilfeinformation
Rückgabe:[Boolean], Tests whether this Region object has an empty interior on the specified drawing surface.

Aufrufinformation
Boolean = My.GDI.Drawing.Region.IsEmpty(toG AS xfcGraphics)
Boolean = My.GDI.Drawing.Region.IsEmpty(toG)
Codeinformation


IsInfinite() - GDI Method or Property

Rückgabe:[Boolean], Tests whether this Region object has an infinite interior on the specified drawing surface.
Hilfeinformation
Rückgabe:[Boolean], Tests whether this Region object has an infinite interior on the specified drawing surface.

Aufrufinformation
Boolean = My.GDI.Drawing.Region.IsInfinite(toG AS xfcGraphics)
Boolean = My.GDI.Drawing.Region.IsInfinite(toG)
Codeinformation


IsVisible() - GDI Method or Property

Rückgabe:[Boolean], Tests whether the specified rectangle is contained within this Region object.
Hilfeinformation
Rückgabe:[Boolean], Tests whether the specified rectangle is contained within this Region object.

Aufrufinformation
Boolean = My.GDI.Drawing.Region.IsVisible(tnX, tnY, tnWidth, tnHeight, toG AS xfcGraphics)
Boolean = My.GDI.Drawing.Region.IsVisible(tnX,tnY,tnWidth,tnHeight,toG)
Codeinformation


MakeEmpty() - GDI Method or Property

Rückgabe:[VOID], Initializes this Region object to an empty interior.
Hilfeinformation
Rückgabe:[VOID], Initializes this Region object to an empty interior.

Aufrufinformation
VOID = My.GDI.Drawing.Region.MakeEmpty()
Codeinformation


MakeInfinite() - GDI Method or Property

Rückgabe:[VOID], Initializes this Region object to an infinite interior.
Hilfeinformation
Rückgabe:[VOID], Initializes this Region object to an infinite interior.

Aufrufinformation
VOID = My.GDI.Drawing.Region.MakeInfinite()
Codeinformation


Transform() - GDI Method or Property

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

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


Translate() - GDI Method or Property

Rückgabe:[VOID], Offsets the coordinates of this Region object by the specified amount.
Hilfeinformation
Rückgabe:[VOID], Offsets the coordinates of this Region object by the specified amount.

Aufrufinformation
VOID = My.GDI.Drawing.Region.Translate(tnDx, tnDy)
VOID = My.GDI.Drawing.Region.Translate(tnDx,tnDy)
Codeinformation


Union() - GDI Method or Property

Rückgabe:[VOID], Updates this Region object to the union of itself and the specified GraphicsPath object.
Hilfeinformation
Rückgabe:[VOID], Updates this Region object to the union of itself and the specified GraphicsPath object.

Aufrufinformation
VOID = My.GDI.Drawing.Region.Union(toPath AS xfcGraphicsPath)
VOID = My.GDI.Drawing.Region.Union(toPath)
Codeinformation


Xor() - GDI Method or Property

Rückgabe:[VOID], Updates this Region object to the union minus the intersection of itself with the specified GraphicsPath object.
Hilfeinformation
Rückgabe:[VOID], Updates this Region object to the union minus the intersection of itself with the specified GraphicsPath object.

Aufrufinformation
VOID = My.GDI.Drawing.Region.Xor(toPath AS xfcGraphicsPath)
VOID = My.GDI.Drawing.Region.Xor(toPath)
Codeinformation


Liste der Properties von Region


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.Region.cMethod
Codeinformation
*/ Abruf...
WAIT WINDOW My.GDI.Drawing.Region.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.Region.nError
Codeinformation
WAIT WINDOW My.GDI.Drawing.Region.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.Region.nLine
Codeinformation
WAIT WINDOW My.GDI.Drawing.Region.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