PMS32 Online- Hilfereferenz

MY.GDI.DRAWING.GRAPHICS

Graphics - Grafische Bearbeitung von Ansichten


Hilfe: GDI Method or Property
Grafische Bearbeitung von Ansichten


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

Memberliste von Graphics


Liste der Methoden von Graphics


AddMetafileComment() - GDI Method or Property

Rückgabe:[VOID], Adds a comment to the current Metafile object.
Hilfeinformation
Rückgabe:[VOID], Adds a comment to the current Metafile object.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.AddMetafileComment(tqData AS VARBINARY)
VOID = My.GDI.Drawing.Graphics.AddMetafileComment(tqData)
Codeinformation


BeginContainer() - GDI Method or Property

Rückgabe:[Object], Saves a graphics container with the current state of this Graphics object and opens and uses a new graphics container.
Hilfeinformation
Rückgabe:[Object], Saves a graphics container with the current state of this Graphics object and opens and uses a new graphics container.

Aufrufinformation
Object = My.GDI.Drawing.Graphics.BeginContainer(toDstRect AS xfcRectangle, toSrcRect AS xfcRectangle, tiUnit AS EnumGraphicsUnit)
Object = My.GDI.Drawing.Graphics.BeginContainer(toDstRect,toSrcRect,tiUnit)
Codeinformation


Clear() - GDI Method or Property

Rückgabe:[VOID], Clears the entire drawing surface and fills it with the specified background color.
Hilfeinformation
Rückgabe:[VOID], Clears the entire drawing surface and fills it with the specified background color.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.Clear(toColor AS xfcColor)
VOID = My.GDI.Drawing.Graphics.Clear(toColor)
Codeinformation


DrawArc() - GDI Method or Property

Rückgabe:[VOID], Draws an arc representing a portion of an ellipse specified by a pair of coordinates, a width, and a height.
Hilfeinformation
Rückgabe:[VOID], Draws an arc representing a portion of an ellipse specified by a pair of coordinates, a width, and a height.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawArc(toPen AS xfcPen, tnX, tnY, tnWidth, tnHeight, tnStartAngle, tnSweepAngle)
VOID = My.GDI.Drawing.Graphics.DrawArc(toPen,tnX,tnY,tnWidth,tnHeight,tnStartAngle,tnSweepAngle)
Codeinformation


DrawBezier() - GDI Method or Property

Rückgabe:[VOID], Draws a Bezier spline defined by four Point structures.
Hilfeinformation
Rückgabe:[VOID], Draws a Bezier spline defined by four Point structures.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawBezier(toPen AS xfcPen, tnX1, tnY1, tnX2, tnY2, tnX3, tnY3, tnX4, tnY4)
VOID = My.GDI.Drawing.Graphics.DrawBezier(toPen,tnX1,tnY1,tnX2,tnY2,tnX3,tnY3,tnX4,tnY4)
Codeinformation


DrawBeziers() - GDI Method or Property

Rückgabe:[VOID], Draws a series of Bezier splines from an array of Point structures.
Hilfeinformation
Rückgabe:[VOID], Draws a series of Bezier splines from an array of Point structures.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawBeziers(toPen AS xfcPen, taoPoints AS xfcPoint)
VOID = My.GDI.Drawing.Graphics.DrawBeziers(toPen,taoPoints)
Codeinformation


DrawClosedCurve() - GDI Method or Property

Rückgabe:[VOID], Draws a closed cardinal spline defined by an array of Point structures.
Hilfeinformation
Rückgabe:[VOID], Draws a closed cardinal spline defined by an array of Point structures.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawClosedCurve(toPen AS xfcPen, taoPoints AS xfcPoint)
VOID = My.GDI.Drawing.Graphics.DrawClosedCurve(toPen,taoPoints)
Codeinformation


DrawCurve() - GDI Method or Property

Rückgabe:[VOID], Draws a cardinal spline through a specified array of Point structures.
Hilfeinformation
Rückgabe:[VOID], Draws a cardinal spline through a specified array of Point structures.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawCurve(toPen AS xfcPen, taoPoints AS xfcPoint, tiOffset, tiNumberOfSegments, tnTension)
VOID = My.GDI.Drawing.Graphics.DrawCurve(toPen,taoPoints,tiOffset,tiNumberOfSegments,tnTension)
Codeinformation


DrawEllipse() - GDI Method or Property

Rückgabe:[VOID], Draws an ellipse defined by a bounding rectangle specified by a pair of coordinates, a height, and a width.
Hilfeinformation
Rückgabe:[VOID], Draws an ellipse defined by a bounding rectangle specified by a pair of coordinates, a height, and a width.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawEllipse(toPen AS xfcPen, tnX, tnY, tnWidth, tnHeight)
VOID = My.GDI.Drawing.Graphics.DrawEllipse(toPen,tnX,tnY,tnWidth,tnHeight)
Codeinformation


DrawIcon() - GDI Method or Property

Rückgabe:[VOID], Draws the image represented by the specified Icon object at the specified coordinates.
Hilfeinformation
Rückgabe:[VOID], Draws the image represented by the specified Icon object at the specified coordinates.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawIcon(toIcon AS xfcIcon, tiX, tiY, tiWidth, tiHeight)
VOID = My.GDI.Drawing.Graphics.DrawIcon(toIcon,tiX,tiY,tiWidth,tiHeight)
Codeinformation


DrawIconUnstretched() - GDI Method or Property

Rückgabe:[VOID], Draws the image represented by the specified Icon object without scaling the image.
Hilfeinformation
Rückgabe:[VOID], Draws the image represented by the specified Icon object without scaling the image.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawIconUnstretched(toIcon AS xfcIcon, toTargetRect AS xfcRectangle)
VOID = My.GDI.Drawing.Graphics.DrawIconUnstretched(toIcon,toTargetRect)
Codeinformation


DrawImage() - GDI Method or Property

Rückgabe:[VOID], Draws the specified Image object at the specified location and with the original size.
Hilfeinformation
Rückgabe:[VOID], Draws the specified Image object at the specified location and with the original size.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawImage(toImage AS xfcImage, tnX, tnY, tnWidth, tnHeight, tnSrcX, tnSrcY, tnSrcWidth, tnSrcHeight  , tiSrcUnit AS EnumGraphicsUnit, toImageAttrs AS xfcImageAttributes, thCallback AS FuncPtr , tiCallbackData AS IntPtr)
VOID = My.GDI.Drawing.Graphics.DrawImage(toImage,tnX,tnY,tnWidth,tnHeight,tnSrcX,tnSrcY,tnSrcWidth,tnSrcHeight,tiSrcUnit,toImageAttrs,thCallback,tiCallbackData)
Codeinformation


DrawImageUnscaled() - GDI Method or Property

Rückgabe:[VOID], Draws the specified image using its original physical size at the location specified by a coordinate pair.
Hilfeinformation
Rückgabe:[VOID], Draws the specified image using its original physical size at the location specified by a coordinate pair.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawImageUnscaled(toImage AS xfcImage, tiX, tiY,  tiWidth, tiHeight)
VOID = My.GDI.Drawing.Graphics.DrawImageUnscaled(toImage,tiX,tiY,tiWidth,tiHeight)
Codeinformation


DrawLine() - GDI Method or Property

Rückgabe:[VOID], Draws a line connecting the two points specified by coordinate pairs.
Hilfeinformation
Rückgabe:[VOID], Draws a line connecting the two points specified by coordinate pairs.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawLine(toPen AS xfcPen, tnX1, tnY1, tnX2, tnY2)
VOID = My.GDI.Drawing.Graphics.DrawLine(toPen,tnX1,tnY1,tnX2,tnY2)
Codeinformation


DrawLines() - GDI Method or Property

Rückgabe:[VOID], Draws a series of line segments that connect an array of Point structures.
Hilfeinformation
Rückgabe:[VOID], Draws a series of line segments that connect an array of Point structures.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawLines(toPen AS xfcPen, taoPoints AS xfcPoint)
VOID = My.GDI.Drawing.Graphics.DrawLines(toPen,taoPoints)
Codeinformation


DrawPath() - GDI Method or Property

Rückgabe:[VOID], Draws a GraphicsPath object.
Hilfeinformation
Rückgabe:[VOID], Draws a GraphicsPath object.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawPath(toPen AS xfcPen, toPath AS xfcGraphicsPath)
VOID = My.GDI.Drawing.Graphics.DrawPath(toPen,toPath)
Codeinformation


DrawPie() - GDI Method or Property

Rückgabe:[VOID], Draws a pie shape defined by an ellipse specified by a coordinate pair, a width, and a height and two radial lines.
Hilfeinformation
Rückgabe:[VOID], Draws a pie shape defined by an ellipse specified by a coordinate pair, a width, and a height and two radial lines.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawPie(toPen AS xfcPen, tnX, tnY, tnWidth, tnHeight, tnStartAngle, tnSweepAngle)
VOID = My.GDI.Drawing.Graphics.DrawPie(toPen,tnX,tnY,tnWidth,tnHeight,tnStartAngle,tnSweepAngle)
Codeinformation


DrawPolygon() - GDI Method or Property

Rückgabe:[VOID], Draws a polygon defined by an array of Point structures.
Hilfeinformation
Rückgabe:[VOID], Draws a polygon defined by an array of Point structures.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawPolygon(toPen AS xfcPen, taoPoints AS xfcPoint)
VOID = My.GDI.Drawing.Graphics.DrawPolygon(toPen,taoPoints)
Codeinformation


DrawRectangle() - GDI Method or Property

Rückgabe:[VOID], Draws a rectangle specified by a coordinate pair, a width, and a height.
Hilfeinformation
Rückgabe:[VOID], Draws a rectangle specified by a coordinate pair, a width, and a height.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawRectangle(toPen AS xfcPen, tnX, tnY, tnWidth, tnHeight)
VOID = My.GDI.Drawing.Graphics.DrawRectangle(toPen,tnX,tnY,tnWidth,tnHeight)
Codeinformation


DrawRectangles() - GDI Method or Property

Rückgabe:[VOID], Draws a series of rectangles specified by Rectangle structures.
Hilfeinformation
Rückgabe:[VOID], Draws a series of rectangles specified by Rectangle structures.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawRectangles(toPen AS xfcPen, taoRects AS xfcRectangle)
VOID = My.GDI.Drawing.Graphics.DrawRectangles(toPen,taoRects)
Codeinformation


DrawString() - GDI Method or Property

Rückgabe:[VOID], Draws the specified text string at the specified location with the specified Brush and Font objects.
Hilfeinformation
Rückgabe:[VOID], Draws the specified text string at the specified location with the specified Brush and Font objects.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawString(tcString, toFont AS xfcFont, toBrush AS xfcBrush, tnX, tnY  , toFormat AS xfcStringFormat)
VOID = My.GDI.Drawing.Graphics.DrawString(tcString,toFont,toBrush,tnX,tnY,toFormat)
Codeinformation


DrawStringJustified() - GDI Method or Property

Rückgabe:[VOID], Draws the specified text string at the specified location with the specified Brush and Font objects in a Full Justified format.
Hilfeinformation
Rückgabe:[VOID], Draws the specified text string at the specified location with the specified Brush and Font objects in a Full Justified format.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.DrawStringJustified(tcString, toFont AS xfcFont, toBrush AS xfcBrush, toRectangle AS xfcRectangle, tlJustLast AS Boolean)
VOID = My.GDI.Drawing.Graphics.DrawStringJustified(tcString,toFont,toBrush,toRectangle,tlJustLast)
Codeinformation


EndContainer() - GDI Method or Property

Rückgabe:[VOID], Closes the current graphics container and restores the state of this Graphics object to the state saved by a call to the BeginContainer method.
Hilfeinformation
Rückgabe:[VOID], Closes the current graphics container and restores the state of this Graphics object to the state saved by a call to the BeginContainer method.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.EndContainer(toContainer AS xfcGraphicsContainer)
VOID = My.GDI.Drawing.Graphics.EndContainer(toContainer)
Codeinformation


EnumerateMetafile() - GDI Method or Property

Rückgabe:[VOID], Sends the records in the specified Metafile object, one at a time, to a callback method for display at a specified point.
Hilfeinformation
Rückgabe:[VOID], Sends the records in the specified Metafile object, one at a time, to a callback method for display at a specified point.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.EnumerateMetafile(toMetafile AS xfcMetafile, taoDestPoints AS xfcPoint, thCallback AS FuncPtr)
VOID = My.GDI.Drawing.Graphics.EnumerateMetafile(toMetafile,taoDestPoints,thCallback)
Codeinformation


ExcludeClip() - GDI Method or Property

Rückgabe:[VOID], Updates the clip region of this Graphics object to exclude the area specified by a Rectangle structure.
Hilfeinformation
Rückgabe:[VOID], Updates the clip region of this Graphics object to exclude the area specified by a Rectangle structure.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.ExcludeClip(toRect AS xfcRectangle)
VOID = My.GDI.Drawing.Graphics.ExcludeClip(toRect)
Codeinformation


FillClosedCurve() - GDI Method or Property

Rückgabe:[VOID], Fills the interior a closed cardinal spline curve defined by an array of Point structures.
Hilfeinformation
Rückgabe:[VOID], Fills the interior a closed cardinal spline curve defined by an array of Point structures.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.FillClosedCurve(toBrush AS xfcBrush, taoPoints AS xfcPoint, tiFillmode AS EnumFillMode, tnTension)
VOID = My.GDI.Drawing.Graphics.FillClosedCurve(toBrush,taoPoints,tiFillmode,tnTension)
Codeinformation


FillEllipse() - GDI Method or Property

Rückgabe:[VOID], Fills the interior of an ellipse defined by a bounding rectangle specified by a pair of coordinates, a width, and a height.
Hilfeinformation
Rückgabe:[VOID], Fills the interior of an ellipse defined by a bounding rectangle specified by a pair of coordinates, a width, and a height.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.FillEllipse(toBrush AS xfcBrush, tnX, tnY, tnWidth, tnHeight)
VOID = My.GDI.Drawing.Graphics.FillEllipse(toBrush,tnX,tnY,tnWidth,tnHeight)
Codeinformation


FillPath() - GDI Method or Property

Rückgabe:[VOID], Fills the interior of a GraphicsPath object.
Hilfeinformation
Rückgabe:[VOID], Fills the interior of a GraphicsPath object.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.FillPath(toBrush AS xfcBrush, toPath AS xfcGraphicsPath)
VOID = My.GDI.Drawing.Graphics.FillPath(toBrush,toPath)
Codeinformation


FillPie() - GDI Method or Property

Rückgabe:[VOID], Fills the interior of a pie section defined by an ellipse specified by a pair of coordinates, a width, and a height and two radial lines.
Hilfeinformation
Rückgabe:[VOID], Fills the interior of a pie section defined by an ellipse specified by a pair of coordinates, a width, and a height and two radial lines.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.FillPie(toBrush AS xfcBrush, tnX, tnY, tnWidth, tnHeight, tnStartAngle, tnSweepAngle)
VOID = My.GDI.Drawing.Graphics.FillPie(toBrush,tnX,tnY,tnWidth,tnHeight,tnStartAngle,tnSweepAngle)
Codeinformation


FillPolygon() - GDI Method or Property

Rückgabe:[VOID], Fills the interior of a polygon defined by an array of points specified by Point structures.
Hilfeinformation
Rückgabe:[VOID], Fills the interior of a polygon defined by an array of points specified by Point structures.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.FillPolygon(toBrush AS xfcBrush, taoPoints AS xfcPoint, tiFillMode AS EnumFillMode)
VOID = My.GDI.Drawing.Graphics.FillPolygon(toBrush,taoPoints,tiFillMode)
Codeinformation


FillRectangle() - GDI Method or Property

Rückgabe:[VOID], Fills the interior of a rectangle specified by a pair of coordinates, a width, and a height.
Hilfeinformation
Rückgabe:[VOID], Fills the interior of a rectangle specified by a pair of coordinates, a width, and a height.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.FillRectangle(toBrush AS xfcBrush, tnX, tnY, tnWidth, tnHeight)
VOID = My.GDI.Drawing.Graphics.FillRectangle(toBrush,tnX,tnY,tnWidth,tnHeight)
Codeinformation


FillRectangles() - GDI Method or Property

Rückgabe:[VOID], Fills the interiors of a series of rectangles specified by Rectangle structures.
Hilfeinformation
Rückgabe:[VOID], Fills the interiors of a series of rectangles specified by Rectangle structures.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.FillRectangles(toBrush AS xfcBrush, taoRects AS xfcRectangle)
VOID = My.GDI.Drawing.Graphics.FillRectangles(toBrush,taoRects)
Codeinformation


FillRegion() - GDI Method or Property

Rückgabe:[VOID], Fills the interior of a Region object.
Hilfeinformation
Rückgabe:[VOID], Fills the interior of a Region object.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.FillRegion(toBrush AS xfcBrush, toRegion AS xfcRegion)
VOID = My.GDI.Drawing.Graphics.FillRegion(toBrush,toRegion)
Codeinformation


Flush() - GDI Method or Property

Rückgabe:[VOID], Forces execution of all pending graphics operations and returns immediately without waiting for the operations to finish.
Hilfeinformation
Rückgabe:[VOID], Forces execution of all pending graphics operations and returns immediately without waiting for the operations to finish.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.Flush(tiIntention AS EnumFlushIntention)
VOID = My.GDI.Drawing.Graphics.Flush(tiIntention)
Codeinformation


FromHdc() - GDI Method or Property

Rückgabe:[Object], Creates a new Graphics object from the specified handle to a device context.
Hilfeinformation
Rückgabe:[Object], Creates a new Graphics object from the specified handle to a device context.

Aufrufinformation
Object = My.GDI.Drawing.Graphics.FromHdc(tHDc AS IntPtr, tHDevice AS IntPtr)
Object = My.GDI.Drawing.Graphics.FromHdc(tHDc,tHDevice)
Codeinformation


FromHwnd() - GDI Method or Property

Rückgabe:[Object], Creates a new Graphics object from the specified handle to a window.
Hilfeinformation
Rückgabe:[Object], Creates a new Graphics object from the specified handle to a window.

Aufrufinformation
Object = My.GDI.Drawing.Graphics.FromHwnd(tHWnd AS IntPtr)
Object = My.GDI.Drawing.Graphics.FromHwnd(tHWnd)
Codeinformation


FromImage() - GDI Method or Property

Rückgabe:[Object], Creates a new Graphics object from the specified Image object.
Hilfeinformation
Rückgabe:[Object], Creates a new Graphics object from the specified Image object.

Aufrufinformation
Object = My.GDI.Drawing.Graphics.FromImage(toImage AS xfcImage)
Object = My.GDI.Drawing.Graphics.FromImage(toImage)
Codeinformation


GetHalftonePalette() - GDI Method or Property

Rückgabe:[Integer], Gets a handle to the current Windows halftone palette.
Hilfeinformation
Rückgabe:[Integer], Gets a handle to the current Windows halftone palette.

Aufrufinformation
Integer = My.GDI.Drawing.Graphics.GetHalftonePalette()
Codeinformation


GetHdc() - GDI Method or Property

Rückgabe:[Object], Gets the handle to the device context associated with this Graphics object.
Hilfeinformation
Rückgabe:[Object], Gets the handle to the device context associated with this Graphics object.

Aufrufinformation
Object = My.GDI.Drawing.Graphics.GetHdc()
Codeinformation


GetNearestColor() - GDI Method or Property

Rückgabe:[Object], Gets the nearest color to the specified Color structure.
Hilfeinformation
Rückgabe:[Object], Gets the nearest color to the specified Color structure.

Aufrufinformation
Object = My.GDI.Drawing.Graphics.GetNearestColor(toColor AS xfcColor)
Object = My.GDI.Drawing.Graphics.GetNearestColor(toColor)
Codeinformation


IntersectClip() - GDI Method or Property

Rückgabe:[VOID], Updates the clip region of this Graphics object to the intersection of the current clip region and the specified Rectangle structure.
Hilfeinformation
Rückgabe:[VOID], Updates the clip region of this Graphics object to the intersection of the current clip region and the specified Rectangle structure.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.IntersectClip(toRegion AS xfcRegion)
VOID = My.GDI.Drawing.Graphics.IntersectClip(toRegion)
Codeinformation


MeasureCharacterRanges() - GDI Method or Property

Rückgabe:[Variant], Gets an array of Region objects, each of which bounds a range of character positions within the specified string.
Hilfeinformation
Rückgabe:[Variant], Gets an array of Region objects, each of which bounds a range of character positions within the specified string.

Aufrufinformation
Variant = My.GDI.Drawing.Graphics.MeasureCharacterRanges(tcText, toFont AS xfcFont, toLayoutRect AS xfcRectangleF, toStringFormat AS xfcStringFormat)
Variant = My.GDI.Drawing.Graphics.MeasureCharacterRanges(tcText,toFont,toLayoutRect,toStringFormat)
Codeinformation


MeasureString() - GDI Method or Property

Rückgabe:[Object], Measures the specified string when drawn with the specified Font object.
Hilfeinformation
Rückgabe:[Object], Measures the specified string when drawn with the specified Font object.

Aufrufinformation
Object = My.GDI.Drawing.Graphics.MeasureString(tcText, toFont AS xfcFont, toLayout AS xfcSizeF, toFormat AS xfcStringFormat,  tiCharactersFitted, tiLinesFilled)
Object = My.GDI.Drawing.Graphics.MeasureString(tcText,toFont,toLayout,toFormat,tiCharactersFitted,tiLinesFilled)
Codeinformation


MultiplyTransform() - GDI Method or Property

Rückgabe:[VOID], Multiplies the world transformation of this Graphics object and specified the Matrix object.
Hilfeinformation
Rückgabe:[VOID], Multiplies the world transformation of this Graphics object and specified the Matrix object.

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


ReleaseHdc() - GDI Method or Property

Rückgabe:[VOID], Releases a device context handle obtained by a previous call to the GetHdc method of this Graphics object.
Hilfeinformation
Rückgabe:[VOID], Releases a device context handle obtained by a previous call to the GetHdc method of this Graphics object.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.ReleaseHdc(tHDc AS IntPtr)
VOID = My.GDI.Drawing.Graphics.ReleaseHdc(tHDc)
Codeinformation


ResetClip() - GDI Method or Property

Rückgabe:[VOID], Resets the clip region of this Graphics object to an infinite region.
Hilfeinformation
Rückgabe:[VOID], Resets the clip region of this Graphics object to an infinite region.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.ResetClip()
Codeinformation


ResetTransform() - GDI Method or Property

Rückgabe:[VOID], Resets the world transformation matrix of this Graphics object to the identity matrix.
Hilfeinformation
Rückgabe:[VOID], Resets the world transformation matrix of this Graphics object to the identity matrix.

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


Restore() - GDI Method or Property

Rückgabe:[VOID], Restores the state of this Graphics object to the state represented by a GraphicsState object.
Hilfeinformation
Rückgabe:[VOID], Restores the state of this Graphics object to the state represented by a GraphicsState object.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.Restore(toGstate AS xfcGraphicsState)
VOID = My.GDI.Drawing.Graphics.Restore(toGstate)
Codeinformation


RotateTransform() - GDI Method or Property

Rückgabe:[VOID], Applies the specified rotation to the transformation matrix of this Graphics object.
Hilfeinformation
Rückgabe:[VOID], Applies the specified rotation to the transformation matrix of this Graphics object.

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


Save() - GDI Method or Property

Rückgabe:[Object], Saves the current state of this Graphics object and identifies the saved state with a GraphicsState object.
Hilfeinformation
Rückgabe:[Object], Saves the current state of this Graphics object and identifies the saved state with a GraphicsState object.

Aufrufinformation
Object = My.GDI.Drawing.Graphics.Save()
Codeinformation


ScaleTransform() - GDI Method or Property

Rückgabe:[VOID], Applies the specified scaling operation to the transformation matrix of this Graphics object by prepending it to the object's transformation matrix.
Hilfeinformation
Rückgabe:[VOID], Applies the specified scaling operation to the transformation matrix of this Graphics object by prepending it to the object's transformation matrix.

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


TransformPoints() - GDI Method or Property

Rückgabe:[VOID], Transforms an array of points from one coordinate space to another using the current world and page transformations of this Graphics object.
Hilfeinformation
Rückgabe:[VOID], Transforms an array of points from one coordinate space to another using the current world and page transformations of this Graphics object.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.TransformPoints(tiDestSpace AS EnumCoordinateSpace, tiSrcSpace AS EnumCoordinateSpace, taoPts AS xfcPoint)
VOID = My.GDI.Drawing.Graphics.TransformPoints(tiDestSpace,tiSrcSpace,taoPts)
Codeinformation


TranslateClip() - GDI Method or Property

Rückgabe:[VOID], Translates the clipping region of this Graphics object by specified amounts in the horizontal and vertical directions.
Hilfeinformation
Rückgabe:[VOID], Translates the clipping region of this Graphics object by specified amounts in the horizontal and vertical directions.

Aufrufinformation
VOID = My.GDI.Drawing.Graphics.TranslateClip(tnDx, tnDy)
VOID = My.GDI.Drawing.Graphics.TranslateClip(tnDx,tnDy)
Codeinformation


TranslateTransform() - GDI Method or Property

Rückgabe:[VOID], Prepends the specified translation to the transformation matrix of this Graphics object.
Hilfeinformation
Rückgabe:[VOID], Prepends the specified translation to the transformation matrix of this Graphics object.

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


Liste der Properties von Graphics


Clip - GDI Method or Property

Gets or sets a Region object that limits the drawing region of this Graphics object.
Hilfeinformation
Gets or sets a Region object that limits the drawing region of this Graphics object.

Aufrufinformation
String = My.GDI.Drawing.Graphics.Clip
Codeinformation


ClipBounds - GDI Method or Property

Gets a RectangleF structure that bounds the clipping region of this Graphics object.
Hilfeinformation
Gets a RectangleF structure that bounds the clipping region of this Graphics object.

Aufrufinformation
String = My.GDI.Drawing.Graphics.ClipBounds
Codeinformation


CompositingMode - GDI Method or Property

Gets a value that specifies how composited images are drawn to this Graphics object.
Hilfeinformation
Gets a value that specifies how composited images are drawn to this Graphics object.

Aufrufinformation
String = My.GDI.Drawing.Graphics.CompositingMode
Codeinformation


CompositingQuality - GDI Method or Property

Gets or sets the rendering quality of composited images drawn to this Graphics object.
Hilfeinformation
Gets or sets the rendering quality of composited images drawn to this Graphics object.

Aufrufinformation
String = My.GDI.Drawing.Graphics.CompositingQuality
Codeinformation


DpiX - GDI Method or Property

Gets the horizontal resolution of this Graphics object.
Hilfeinformation
Gets the horizontal resolution of this Graphics object.

Aufrufinformation
Date = My.GDI.Drawing.Graphics.DpiX
Codeinformation


DpiY - GDI Method or Property

Gets the vertical resolution of this Graphics object.
Hilfeinformation
Gets the vertical resolution of this Graphics object.

Aufrufinformation
Date = My.GDI.Drawing.Graphics.DpiY
Codeinformation


InterpolationMode - GDI Method or Property

Gets or sets the interpolation mode associated with this Graphics object.
Hilfeinformation
Gets or sets the interpolation mode associated with this Graphics object.

Aufrufinformation
Number = My.GDI.Drawing.Graphics.InterpolationMode
Codeinformation


IsClipEmpty - GDI Method or Property

Gets a value indicating whether the clipping region of this Graphics object is empty.
Hilfeinformation
Gets a value indicating whether the clipping region of this Graphics object is empty.

Aufrufinformation
Number = My.GDI.Drawing.Graphics.IsClipEmpty
Codeinformation


IsVisibleClipEmpty - GDI Method or Property

Gets a value indicating whether the visible clipping region of this Graphics object is empty.
Hilfeinformation
Gets a value indicating whether the visible clipping region of this Graphics object is empty.

Aufrufinformation
Number = My.GDI.Drawing.Graphics.IsVisibleClipEmpty
Codeinformation


PageScale - GDI Method or Property

Gets or sets the scaling between world units and page units for this Graphics object.
Hilfeinformation
Gets or sets the scaling between world units and page units for this Graphics object.

Aufrufinformation
P = My.GDI.Drawing.Graphics.PageScale
Codeinformation


PageUnit - GDI Method or Property

Gets or sets the unit of measure used for page coordinates in this Graphics object.
Hilfeinformation
Gets or sets the unit of measure used for page coordinates in this Graphics object.

Aufrufinformation
P = My.GDI.Drawing.Graphics.PageUnit
Codeinformation


PixelOffsetMode - GDI Method or Property

Gets or set a value specifying how pixels are offset during rendering of this Graphics object.
Hilfeinformation
Gets or set a value specifying how pixels are offset during rendering of this Graphics object.

Aufrufinformation
P = My.GDI.Drawing.Graphics.PixelOffsetMode
Codeinformation


RenderingOrigin - GDI Method or Property

Gets or sets the rendering origin of this Graphics object for dithering and for hatch brushes.
Hilfeinformation
Gets or sets the rendering origin of this Graphics object for dithering and for hatch brushes.

Aufrufinformation
R = My.GDI.Drawing.Graphics.RenderingOrigin
Codeinformation


SmoothingMode - GDI Method or Property

Gets or sets the rendering quality for this Graphics object.
Hilfeinformation
Gets or sets the rendering quality for this Graphics object.

Aufrufinformation
S = My.GDI.Drawing.Graphics.SmoothingMode
Codeinformation


TextContrast - GDI Method or Property

Gets or sets the gamma correction value for rendering text.
Hilfeinformation
Gets or sets the gamma correction value for rendering text.

Aufrufinformation
DateTime = My.GDI.Drawing.Graphics.TextContrast
Codeinformation


TextRenderingHint - GDI Method or Property

Gets or sets the rendering mode for text associated with this Graphics object.
Hilfeinformation
Gets or sets the rendering mode for text associated with this Graphics object.

Aufrufinformation
DateTime = My.GDI.Drawing.Graphics.TextRenderingHint
Codeinformation


Transform - GDI Method or Property

Gets or sets the world transformation for this Graphics object.
Hilfeinformation
Gets or sets the world transformation for this Graphics object.

Aufrufinformation
DateTime = My.GDI.Drawing.Graphics.Transform
Codeinformation


VisibleClipBounds - GDI Method or Property

Gets or sets the bounding rectangle of the visible clipping region of this Graphics object.
Hilfeinformation
Gets or sets the bounding rectangle of the visible clipping region of this Graphics object.

Aufrufinformation
String = My.GDI.Drawing.Graphics.VisibleClipBounds
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.Graphics.cMethod
Codeinformation
*/ Abruf...
WAIT WINDOW My.GDI.Drawing.Graphics.cMethod

lastresult -

Letztes Ergebnis
Hilfeinformation

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

useprecision - GDI Method or Property


Hilfeinformation

Aufrufinformation
U = My.GDI.Drawing.Graphics.useprecision
Codeinformation


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