C# Class System.Drawing.Graphics

Inheritance: System.MarshalByRefObject, IDeviceContext, IDisposable
Afficher le fichier Open project: mono/sysdrawing-coregraphics Class Usage Examples

Protected Properties

Свойство Type Description
eta1 double
eta2 double
isPieSlice bool
xF1 double
xF2 double
yF1 double
yF2 double

Méthodes publiques

Méthode Description
BeginContainer ( ) : GraphicsContainer
BeginContainer ( Rectangle dstRect, Rectangle srcRect, GraphicsUnit unit ) : GraphicsContainer
BeginContainer ( RectangleF dstRect, RectangleF srcRect, GraphicsUnit unit ) : GraphicsContainer
Clear ( Color color ) : void
Dispose ( ) : void
DrawArc ( Pen pen, Rectangle rect, float startAngle, float sweepAngle ) : void
DrawArc ( Pen pen, RectangleF rect, float startAngle, float sweepAngle ) : void
DrawArc ( Pen pen, float x, float y, float width, float height, float startAngle, float sweepAngle ) : void
DrawArc ( Pen pen, int x, int y, int width, int height, int startAngle, int sweepAngle ) : void
DrawBezier ( Pen pen, Point pt1, Point pt2, Point pt3, Point pt4 ) : void
DrawBezier ( Pen pen, PointF pt1, PointF pt2, PointF pt3, PointF pt4 ) : void
DrawBezier ( Pen pen, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4 ) : void
DrawBeziers ( Pen pen, Point points ) : void
DrawBeziers ( Pen pen, PointF points ) : void
DrawClosedCurve ( Pen pen, Point points ) : void
DrawClosedCurve ( Pen pen, Point points, float tension, FillMode fillmode ) : void
DrawClosedCurve ( Pen pen, PointF points ) : void
DrawClosedCurve ( Pen pen, PointF points, float tension, FillMode fillmode ) : void
DrawCurve ( Pen pen, Point points, float tension = 0.5f ) : void
DrawCurve ( Pen pen, Point points, int offset, int numberOfSegments, float tension = 0.5f ) : void
DrawCurve ( Pen pen, PointF points, float tension = 0.5f ) : void
DrawCurve ( Pen pen, PointF points, int offset, int numberOfSegments, float tension = 0.5f ) : void
DrawEllipse ( Pen pen, Rectangle rect ) : void
DrawEllipse ( Pen pen, RectangleF rect ) : void
DrawEllipse ( Pen pen, float x, float y, float width, float height ) : void
DrawEllipse ( Pen pen, int x1, int y1, int x2, int y2 ) : void
DrawEllipticalArc ( PointF center, double a, double b, double theta, double lambda1, double lambda2, bool isPieSlice ) : void
DrawIcon ( Icon icon, Rectangle targetRect ) : void
DrawIcon ( Icon icon, int x, int y ) : void
DrawIconUnstretched ( Icon icon, Rectangle targetRect ) : void
DrawImage ( Image image, Point destPoints ) : void

Draws the specified Image at the specified location and with the specified shape and size. The destPoints parameter specifies three points of a parallelogram. The three Point structures represent the upper-left, upper-right, and lower-left corners of the parallelogram. The fourth point is extrapolated from the first three to form a parallelogram. The image represented by the image parameter is scaled and sheared to fit the shape of the parallelogram specified by the destPoints parameters.

DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit ) : void

Draws the specified portion of the specified Image at the specified location and with the specified size. The destPoints specifies a parallelogram with the first point specifying the upper left corner, second point specifying the upper right corner and the third point specifying the lower left corner. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.

DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback ) : void
DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback, int callbackData ) : void
DrawImage ( Image image, PointF point ) : void

Draws the specified Image, using its original physical size, at the specified location.

DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit ) : void

Draws the specified portion of the specified Image at the specified location and with the specified size. The destPoints specifies a parallelogram with the first point specifying the upper left corner, second point specifying the upper right corner and the third point specifying the lower left corner. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.

DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback ) : void
DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback, int callbackData ) : void
DrawImage ( Image image, Rectangle rect ) : void

Draws the specified Image at the specified location and with the specified size. The image represented by the image object is scaled to the dimensions of the rect rectangle.

DrawImage ( Image image, Rectangle destRect, Rectangle srcRect, GraphicsUnit srcUnit ) : void

Draws the specified portion of the specified Image at the specified location and with the specified size. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled to fit inside the rectangle specified by the destRect parameter.

DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit ) : void

Draws the specified portion of the specified Image at the specified location and with the specified size. The parameters srcX, srcY, srcWidth and srcHeight define the rectangular source portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.

DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs ) : void
DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback ) : void
DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback, IntPtr callbackData ) : void
DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit ) : void

Draws the specified portion of the specified Image at the specified location and with the specified size. The parameters srcX, srcY, srcWidth and srcHeight define the rectangular source portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.

DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback ) : void
DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback, IntPtr callbackData ) : void
DrawImage ( Image image, RectangleF rect ) : void

Draws the specified Image at the specified location and with the specified size.

DrawImage ( Image image, RectangleF destRect, RectangleF srcRect, GraphicsUnit srcUnit ) : void

Draws the specified portion of the specified Image at the specified location and with the specified size. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.

DrawImage ( Image image, float x, float y ) : void

Draws the specified image, using its original physical size, at the location specified by a coordinate pair.

DrawImage ( Image image, float x, float y, RectangleF srcRect, GraphicsUnit srcUnit ) : void

Draws a portion of an image at a specified location.

DrawImage ( Image image, float x, float y, float width, float height ) : void
DrawImage ( Image image, int x, int y ) : void

Draws the specified image, using its original physical size, at the location specified by a coordinate pair.

DrawImage ( Image image, int x, int y, Rectangle srcRect, GraphicsUnit srcUnit ) : void

Draws a portion of an image at a specified location.

DrawImage ( Image image, int x, int y, int width, int height ) : void

Draws the specified Image at the specified location and with the specified size.

DrawImageUnscaled ( Image image, Point point ) : void
DrawImageUnscaled ( Image image, Rectangle rect ) : void
DrawImageUnscaled ( Image image, int x, int y ) : void
DrawImageUnscaled ( Image image, int x, int y, int width, int height ) : void
DrawImageUnscaledAndClipped ( Image image, Rectangle rect ) : void
DrawLine ( Pen pen, Point pt1, Point pt2 ) : void
DrawLine ( Pen pen, PointF pt1, PointF pt2 ) : void
DrawLine ( Pen pen, float x1, float y1, float x2, float y2 ) : void
DrawLine ( Pen pen, int x1, int y1, int x2, int y2 ) : void
DrawLines ( Pen pen, Point points ) : void
DrawLines ( Pen pen, PointF points ) : void
DrawPath ( Pen pen, GraphicsPath path ) : void
DrawPie ( Pen pen, Rectangle rect, float startAngle, float sweepAngle ) : void
DrawPie ( Pen pen, RectangleF rect, float startAngle, float sweepAngle ) : void
DrawPie ( Pen pen, float x, float y, float width, float height, float startAngle, float sweepAngle ) : void
DrawPolygon ( Pen pen, Point points ) : void
DrawPolygon ( Pen pen, PointF points ) : void
DrawRectangle ( Pen pen, Rectangle rect ) : void
DrawRectangle ( Pen pen, float x1, float y1, float x2, float y2 ) : void
DrawRectangle ( Pen pen, int x1, int y1, int x2, int y2 ) : void
DrawRectangles ( Pen pen, Rectangle rects ) : void
DrawRectangles ( Pen pen, RectangleF rects ) : void
DrawString ( string s, Font font, Brush brush, PointF point, StringFormat format = null ) : void
DrawString ( string s, Font font, Brush brush, RectangleF layoutRectangle, StringFormat format = null ) : void
DrawString ( string s, Font font, Brush brush, float x, float y, StringFormat format = null ) : void
EndContainer ( GraphicsContainer container ) : void
ExcludeClip ( Rectangle rect ) : void
ExcludeClip ( RectangleF rect ) : void
ExcludeClip ( Region region ) : void
FillClosedCurve ( Brush brush, Point points ) : void
FillClosedCurve ( Brush brush, Point points, FillMode fillmode, float tension = 0.5f ) : void
FillClosedCurve ( Brush brush, PointF points ) : void
FillClosedCurve ( Brush brush, PointF points, FillMode fillmode, float tension = 0.5f ) : void
FillEllipse ( Brush brush, RectangleF rect ) : void
FillEllipse ( Brush brush, float x1, float y1, float x2, float y2 ) : void
FillEllipse ( Brush brush, int x1, int y1, int x2, int y2 ) : void
FillPath ( Brush brush, GraphicsPath path ) : void
FillPie ( Brush brush, Rectangle rect, float startAngle, float sweepAngle ) : void
FillPie ( Brush brush, float x, float y, float width, float height, float startAngle, float sweepAngle ) : void
FillPie ( Brush brush, int x, int y, int width, int height, int startAngle, int sweepAngle ) : void
FillPolygon ( Brush brush, Point points, FillMode fillMode = FillMode.Alternate ) : void
FillPolygon ( Brush brush, PointF points, FillMode fillMode = FillMode.Alternate ) : void
FillRectangle ( Brush brush, Rectangle rect ) : void
FillRectangle ( Brush brush, RectangleF rect ) : void
FillRectangle ( Brush brush, float x1, float y1, float x2, float y2 ) : void
FillRectangle ( Brush brush, int x1, int y1, int x2, int y2 ) : void
FillRectangles ( Brush brush, Rectangle rects ) : void
FillRectangles ( Brush brush, RectangleF rects ) : void
FillRegion ( Brush brush, Region region ) : void

Fills the interior of a region.

Flush ( ) : void
Flush ( FlushIntention intention ) : void
FromContext ( CGContext context ) : Graphics
FromContext ( CGContext context, float screenScale ) : Graphics
FromContext ( NSGraphicsContext context ) : Graphics
FromCurrentContext ( ) : Graphics
FromImage ( Image image ) : Graphics
GetNearestColor ( Color color ) : Color
Graphics ( CGContext context, bool flipped = true ) : AppKit
IntersectClip ( Rectangle rect ) : void
IntersectClip ( RectangleF rect ) : void
IntersectClip ( Region region ) : void
IsVisible ( Point point ) : bool
IsVisible ( PointF point ) : bool
IsVisible ( Rectangle rect ) : bool
IsVisible ( RectangleF rect ) : bool
IsVisible ( float x, float y ) : bool
IsVisible ( float x, float y, float width, float height ) : bool
IsVisible ( int x, int y ) : bool
IsVisible ( int x, int y, int width, int height ) : bool
MeasureCharacterRanges ( string text, Font font, RectangleF layoutRect, StringFormat stringFormat ) : Region[]
MeasureString ( string text, Font font ) : SizeF
MeasureString ( string text, Font font, PointF point, StringFormat stringFormat ) : SizeF
MeasureString ( string textg, Font font, RectangleF rect ) : SizeF
MeasureString ( string textg, Font font, SizeF layoutArea ) : SizeF
MeasureString ( string text, Font font, SizeF layoutArea, StringFormat stringFormat ) : SizeF
MeasureString ( string text, Font font, SizeF layoutArea, StringFormat stringFormat, int &charactersFitted, int &linesFilled ) : SizeF
MeasureString ( string textg, Font font, int width ) : SizeF
MeasureString ( string text, Font font, int width, StringFormat format ) : SizeF
MultiplyTransform ( Matrix matrix ) : void
MultiplyTransform ( Matrix matrix, MatrixOrder order ) : void
ResetClip ( ) : void
ResetTransform ( ) : void
Restore ( GraphicsState state ) : void
RotateTransform ( float angle ) : void
RotateTransform ( float angle, MatrixOrder order ) : void
Save ( ) : GraphicsState
ScaleTransform ( float sx, float sy ) : void
ScaleTransform ( float sx, float sy, MatrixOrder order ) : void
SetClip ( Graphics g ) : void
SetClip ( Graphics g, CombineMode combineMode ) : void
SetClip ( GraphicsPath graphicsPath ) : void
SetClip ( GraphicsPath graphicsPath, CombineMode combineMode ) : void
SetClip ( Rectangle rect ) : void
SetClip ( Rectangle rect, CombineMode combineMode ) : void
SetClip ( RectangleF rect ) : void
SetClip ( RectangleF rect, CombineMode combineMode ) : void
SetClip ( Region region, CombineMode combineMode ) : void
TransformPoints ( CoordinateSpace destSpace, CoordinateSpace srcSpace, Point pts ) : void
TransformPoints ( CoordinateSpace destSpace, CoordinateSpace srcSpace, PointF pts ) : void
TranslateClip ( float dx, float dy ) : void
TranslateClip ( int dx, int dy ) : void
TranslateTransform ( float tx, float ty ) : void
TranslateTransform ( float tx, float ty, MatrixOrder order ) : void
drawEllipticalArcToContext ( int degree, double threshold ) : void

Private Methods

Méthode Description
ConvertPoints ( Point points ) : System.Drawing.PointF[]
CurveTo ( float x1, float y1, float x2, float y2, float x3, float y3 ) : void
Dispose ( bool disposing ) : void
DrawEllipticalArc ( Rectangle arcRect, double lambda1, double lambda2, bool isPieSlice ) : void
DrawEllipticalArc ( RectangleF arcRect, double lambda1, double lambda2, bool isPieSlice ) : void
DrawEllipticalArc ( double cx, double cy, double a, double b, double theta, double lambda1, double lambda2, bool isPieSlice ) : void
DrawEllipticalArc ( float x, float y, float width, float height, double lambda1, double lambda2, bool isPieSlice ) : void
DrawImage ( RectangleF rect, CGImage image, CGAffineTransform transform ) : void
FillBrush ( Brush brush, FillMode fillMode = FillMode.Alternate ) : void
Graphics ( ) : AppKit
Graphics ( CGContext context ) : AppKit
Graphics ( CGContext context, nfloat screenScale ) : AppKit
Graphics ( NSGraphicsContext context ) : AppKit
GraphicsUnitConvertX ( float x ) : float
GraphicsUnitConvertY ( float y ) : float
InitializeContext ( CGContext context ) : void
InitializeImagingContext ( ) : void
LineTo ( PointF point ) : void
LineTo ( float x, float y ) : void
MakeCurve ( PointF points, PointF tangents, int offset, int length, CurveType type ) : void
MoveTo ( PointF point ) : void
MoveTo ( float x, float y ) : void
PlotPath ( GraphicsPath path ) : void
PolygonSetup ( PointF points ) : void
RectanglePath ( RectangleF rectangle ) : void
RectanglePath ( float x1, float y1, float x2, float y2 ) : void
Stroke ( Pen pen ) : void
StrokePen ( Pen pen ) : void
applyModelView ( ) : void
buildAttributedString ( string text, Font font, StringFormat format = null, Color fontColor = null ) : NSMutableAttributedString
computeFocii ( ) : void
estimateError ( int degree, double etaA, double etaB ) : double
initializeMatrix ( Matrix &matrix, bool isFlipped ) : void
make_arc ( CGContext graphics, bool start, float x, float y, float width, float height, float startAngle, float endAngle, bool antialiasing, bool isPieSlice ) : void
make_arcs ( CGContext graphics, float x, float y, float width, float height, float startAngle, float sweepAngle, bool convert_units, bool antialiasing, bool isPieSlice ) : void
radians ( float degrees ) : double
rationalFunction ( double x, double c ) : double
setupView ( ) : void

Method Details

BeginContainer() public méthode

public BeginContainer ( ) : GraphicsContainer
Résultat GraphicsContainer

BeginContainer() public méthode

public BeginContainer ( Rectangle dstRect, Rectangle srcRect, GraphicsUnit unit ) : GraphicsContainer
dstRect Rectangle
srcRect Rectangle
unit GraphicsUnit
Résultat GraphicsContainer

BeginContainer() public méthode

public BeginContainer ( RectangleF dstRect, RectangleF srcRect, GraphicsUnit unit ) : GraphicsContainer
dstRect RectangleF
srcRect RectangleF
unit GraphicsUnit
Résultat GraphicsContainer

Clear() public méthode

public Clear ( Color color ) : void
color Color
Résultat void

Dispose() public méthode

public Dispose ( ) : void
Résultat void

DrawArc() public méthode

public DrawArc ( Pen pen, Rectangle rect, float startAngle, float sweepAngle ) : void
pen Pen
rect Rectangle
startAngle float
sweepAngle float
Résultat void

DrawArc() public méthode

public DrawArc ( Pen pen, RectangleF rect, float startAngle, float sweepAngle ) : void
pen Pen
rect RectangleF
startAngle float
sweepAngle float
Résultat void

DrawArc() public méthode

public DrawArc ( Pen pen, float x, float y, float width, float height, float startAngle, float sweepAngle ) : void
pen Pen
x float
y float
width float
height float
startAngle float
sweepAngle float
Résultat void

DrawArc() public méthode

public DrawArc ( Pen pen, int x, int y, int width, int height, int startAngle, int sweepAngle ) : void
pen Pen
x int
y int
width int
height int
startAngle int
sweepAngle int
Résultat void

DrawBezier() public méthode

public DrawBezier ( Pen pen, Point pt1, Point pt2, Point pt3, Point pt4 ) : void
pen Pen
pt1 Point
pt2 Point
pt3 Point
pt4 Point
Résultat void

DrawBezier() public méthode

public DrawBezier ( Pen pen, PointF pt1, PointF pt2, PointF pt3, PointF pt4 ) : void
pen Pen
pt1 PointF
pt2 PointF
pt3 PointF
pt4 PointF
Résultat void

DrawBezier() public méthode

public DrawBezier ( Pen pen, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4 ) : void
pen Pen
x1 float
y1 float
x2 float
y2 float
x3 float
y3 float
x4 float
y4 float
Résultat void

DrawBeziers() public méthode

public DrawBeziers ( Pen pen, Point points ) : void
pen Pen
points Point
Résultat void

DrawBeziers() public méthode

public DrawBeziers ( Pen pen, PointF points ) : void
pen Pen
points PointF
Résultat void

DrawClosedCurve() public méthode

public DrawClosedCurve ( Pen pen, Point points ) : void
pen Pen
points Point
Résultat void

DrawClosedCurve() public méthode

public DrawClosedCurve ( Pen pen, Point points, float tension, FillMode fillmode ) : void
pen Pen
points Point
tension float
fillmode FillMode
Résultat void

DrawClosedCurve() public méthode

public DrawClosedCurve ( Pen pen, PointF points ) : void
pen Pen
points PointF
Résultat void

DrawClosedCurve() public méthode

public DrawClosedCurve ( Pen pen, PointF points, float tension, FillMode fillmode ) : void
pen Pen
points PointF
tension float
fillmode FillMode
Résultat void

DrawCurve() public méthode

public DrawCurve ( Pen pen, Point points, float tension = 0.5f ) : void
pen Pen
points Point
tension float
Résultat void

DrawCurve() public méthode

public DrawCurve ( Pen pen, Point points, int offset, int numberOfSegments, float tension = 0.5f ) : void
pen Pen
points Point
offset int
numberOfSegments int
tension float
Résultat void

DrawCurve() public méthode

public DrawCurve ( Pen pen, PointF points, float tension = 0.5f ) : void
pen Pen
points PointF
tension float
Résultat void

DrawCurve() public méthode

public DrawCurve ( Pen pen, PointF points, int offset, int numberOfSegments, float tension = 0.5f ) : void
pen Pen
points PointF
offset int
numberOfSegments int
tension float
Résultat void

DrawEllipse() public méthode

public DrawEllipse ( Pen pen, Rectangle rect ) : void
pen Pen
rect Rectangle
Résultat void

DrawEllipse() public méthode

public DrawEllipse ( Pen pen, RectangleF rect ) : void
pen Pen
rect RectangleF
Résultat void

DrawEllipse() public méthode

public DrawEllipse ( Pen pen, float x, float y, float width, float height ) : void
pen Pen
x float
y float
width float
height float
Résultat void

DrawEllipse() public méthode

public DrawEllipse ( Pen pen, int x1, int y1, int x2, int y2 ) : void
pen Pen
x1 int
y1 int
x2 int
y2 int
Résultat void

DrawEllipticalArc() public méthode

public DrawEllipticalArc ( PointF center, double a, double b, double theta, double lambda1, double lambda2, bool isPieSlice ) : void
center PointF
a double
b double
theta double
lambda1 double
lambda2 double
isPieSlice bool
Résultat void

DrawIcon() public méthode

public DrawIcon ( Icon icon, Rectangle targetRect ) : void
icon Icon
targetRect Rectangle
Résultat void

DrawIcon() public méthode

public DrawIcon ( Icon icon, int x, int y ) : void
icon Icon
x int
y int
Résultat void

DrawIconUnstretched() public méthode

public DrawIconUnstretched ( Icon icon, Rectangle targetRect ) : void
icon Icon
targetRect Rectangle
Résultat void

DrawImage() public méthode

Draws the specified Image at the specified location and with the specified shape and size. The destPoints parameter specifies three points of a parallelogram. The three Point structures represent the upper-left, upper-right, and lower-left corners of the parallelogram. The fourth point is extrapolated from the first three to form a parallelogram. The image represented by the image parameter is scaled and sheared to fit the shape of the parallelogram specified by the destPoints parameters.
public DrawImage ( Image image, Point destPoints ) : void
image Image Image.
destPoints Point Destination points.
Résultat void

DrawImage() public méthode

Draws the specified portion of the specified Image at the specified location and with the specified size. The destPoints specifies a parallelogram with the first point specifying the upper left corner, second point specifying the upper right corner and the third point specifying the lower left corner. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.
public DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit ) : void
image Image Image.
destPoints Point Destination points.
srcRect Rectangle Source rect.
srcUnit GraphicsUnit Source unit.
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
image Image
destPoints Point
srcRect Rectangle
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback ) : void
image Image
destPoints Point
srcRect Rectangle
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback, int callbackData ) : void
image Image
destPoints Point
srcRect Rectangle
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
callbackData int
Résultat void

DrawImage() public méthode

Draws the specified Image, using its original physical size, at the specified location.
public DrawImage ( Image image, PointF point ) : void
image Image Image.
point PointF Point.
Résultat void

DrawImage() public méthode

Draws the specified portion of the specified Image at the specified location and with the specified size. The destPoints specifies a parallelogram with the first point specifying the upper left corner, second point specifying the upper right corner and the third point specifying the lower left corner. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.
public DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit ) : void
image Image Image.
destPoints PointF Destination points.
srcRect RectangleF Source rect.
srcUnit GraphicsUnit Source unit.
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
image Image
destPoints PointF
srcRect RectangleF
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback ) : void
image Image
destPoints PointF
srcRect RectangleF
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback, int callbackData ) : void
image Image
destPoints PointF
srcRect RectangleF
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
callbackData int
Résultat void

DrawImage() public méthode

Draws the specified Image at the specified location and with the specified size. The image represented by the image object is scaled to the dimensions of the rect rectangle.
public DrawImage ( Image image, Rectangle rect ) : void
image Image Image.
rect Rectangle Rect.
Résultat void

DrawImage() public méthode

Draws the specified portion of the specified Image at the specified location and with the specified size. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled to fit inside the rectangle specified by the destRect parameter.
public DrawImage ( Image image, Rectangle destRect, Rectangle srcRect, GraphicsUnit srcUnit ) : void
image Image Image.
destRect Rectangle Destination rect.
srcRect Rectangle Source rect.
srcUnit GraphicsUnit Source unit.
Résultat void

DrawImage() public méthode

Draws the specified portion of the specified Image at the specified location and with the specified size. The parameters srcX, srcY, srcWidth and srcHeight define the rectangular source portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.
public DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit ) : void
image Image Image.
destRect Rectangle Destination rect.
srcX float Source x.
srcY float Source y.
srcWidth float Source width.
srcHeight float Source height.
srcUnit GraphicsUnit Source unit.
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs ) : void
image Image
destRect Rectangle
srcX float
srcY float
srcWidth float
srcHeight float
srcUnit GraphicsUnit
imageAttrs System.Drawing.Imaging.ImageAttributes
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback ) : void
image Image
destRect Rectangle
srcX float
srcY float
srcWidth float
srcHeight float
srcUnit GraphicsUnit
imageAttrs System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback, IntPtr callbackData ) : void
image Image
destRect Rectangle
srcX float
srcY float
srcWidth float
srcHeight float
srcUnit GraphicsUnit
imageAttrs System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
callbackData System.IntPtr
Résultat void

DrawImage() public méthode

Draws the specified portion of the specified Image at the specified location and with the specified size. The parameters srcX, srcY, srcWidth and srcHeight define the rectangular source portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.
public DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit ) : void
image Image Image.
destRect Rectangle Destination rect.
srcX int Source x.
srcY int Source y.
srcWidth int Source width.
srcHeight int Source height.
srcUnit GraphicsUnit Source unit.
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
image Image
destRect Rectangle
srcX int
srcY int
srcWidth int
srcHeight int
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback ) : void
image Image
destRect Rectangle
srcX int
srcY int
srcWidth int
srcHeight int
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback, IntPtr callbackData ) : void
image Image
destRect Rectangle
srcX int
srcY int
srcWidth int
srcHeight int
srcUnit GraphicsUnit
imageAttrs System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
callbackData System.IntPtr
Résultat void

DrawImage() public méthode

Draws the specified Image at the specified location and with the specified size.
public DrawImage ( Image image, RectangleF rect ) : void
image Image Image.
rect RectangleF Rect.
Résultat void

DrawImage() public méthode

Draws the specified portion of the specified Image at the specified location and with the specified size. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.
public DrawImage ( Image image, RectangleF destRect, RectangleF srcRect, GraphicsUnit srcUnit ) : void
image Image Image.
destRect RectangleF Destination rect.
srcRect RectangleF Source rect.
srcUnit GraphicsUnit Source unit.
Résultat void

DrawImage() public méthode

Draws the specified image, using its original physical size, at the location specified by a coordinate pair.
public DrawImage ( Image image, float x, float y ) : void
image Image Image.
x float The x coordinate.
y float The y coordinate.
Résultat void

DrawImage() public méthode

Draws a portion of an image at a specified location.
public DrawImage ( Image image, float x, float y, RectangleF srcRect, GraphicsUnit srcUnit ) : void
image Image Image.
x float The x coordinate.
y float The y coordinate.
srcRect RectangleF Source rect.
srcUnit GraphicsUnit Source unit.
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, float x, float y, float width, float height ) : void
image Image
x float
y float
width float
height float
Résultat void

DrawImage() public méthode

Draws the specified image, using its original physical size, at the location specified by a coordinate pair.
public DrawImage ( Image image, int x, int y ) : void
image Image Image.
x int The x coordinate.
y int The y coordinate.
Résultat void

DrawImage() public méthode

Draws a portion of an image at a specified location.
public DrawImage ( Image image, int x, int y, Rectangle srcRect, GraphicsUnit srcUnit ) : void
image Image Image.
x int The x coordinate.
y int The y coordinate.
srcRect Rectangle Source rect.
srcUnit GraphicsUnit Source unit.
Résultat void

DrawImage() public méthode

Draws the specified Image at the specified location and with the specified size.
public DrawImage ( Image image, int x, int y, int width, int height ) : void
image Image Image.
x int The x coordinate.
y int The y coordinate.
width int Width.
height int Height.
Résultat void

DrawImageUnscaled() public méthode

public DrawImageUnscaled ( Image image, Point point ) : void
image Image
point Point
Résultat void

DrawImageUnscaled() public méthode

public DrawImageUnscaled ( Image image, Rectangle rect ) : void
image Image
rect Rectangle
Résultat void

DrawImageUnscaled() public méthode

public DrawImageUnscaled ( Image image, int x, int y ) : void
image Image
x int
y int
Résultat void

DrawImageUnscaled() public méthode

public DrawImageUnscaled ( Image image, int x, int y, int width, int height ) : void
image Image
x int
y int
width int
height int
Résultat void

DrawImageUnscaledAndClipped() public méthode

public DrawImageUnscaledAndClipped ( Image image, Rectangle rect ) : void
image Image
rect Rectangle
Résultat void

DrawLine() public méthode

public DrawLine ( Pen pen, Point pt1, Point pt2 ) : void
pen Pen
pt1 Point
pt2 Point
Résultat void

DrawLine() public méthode

public DrawLine ( Pen pen, PointF pt1, PointF pt2 ) : void
pen Pen
pt1 PointF
pt2 PointF
Résultat void

DrawLine() public méthode

public DrawLine ( Pen pen, float x1, float y1, float x2, float y2 ) : void
pen Pen
x1 float
y1 float
x2 float
y2 float
Résultat void

DrawLine() public méthode

public DrawLine ( Pen pen, int x1, int y1, int x2, int y2 ) : void
pen Pen
x1 int
y1 int
x2 int
y2 int
Résultat void

DrawLines() public méthode

public DrawLines ( Pen pen, Point points ) : void
pen Pen
points Point
Résultat void

DrawLines() public méthode

public DrawLines ( Pen pen, PointF points ) : void
pen Pen
points PointF
Résultat void

DrawPath() public méthode

public DrawPath ( Pen pen, GraphicsPath path ) : void
pen Pen
path System.Drawing.Drawing2D.GraphicsPath
Résultat void

DrawPie() public méthode

public DrawPie ( Pen pen, Rectangle rect, float startAngle, float sweepAngle ) : void
pen Pen
rect Rectangle
startAngle float
sweepAngle float
Résultat void

DrawPie() public méthode

public DrawPie ( Pen pen, RectangleF rect, float startAngle, float sweepAngle ) : void
pen Pen
rect RectangleF
startAngle float
sweepAngle float
Résultat void

DrawPie() public méthode

public DrawPie ( Pen pen, float x, float y, float width, float height, float startAngle, float sweepAngle ) : void
pen Pen
x float
y float
width float
height float
startAngle float
sweepAngle float
Résultat void

DrawPolygon() public méthode

public DrawPolygon ( Pen pen, Point points ) : void
pen Pen
points Point
Résultat void

DrawPolygon() public méthode

public DrawPolygon ( Pen pen, PointF points ) : void
pen Pen
points PointF
Résultat void

DrawRectangle() public méthode

public DrawRectangle ( Pen pen, Rectangle rect ) : void
pen Pen
rect Rectangle
Résultat void

DrawRectangle() public méthode

public DrawRectangle ( Pen pen, float x1, float y1, float x2, float y2 ) : void
pen Pen
x1 float
y1 float
x2 float
y2 float
Résultat void

DrawRectangle() public méthode

public DrawRectangle ( Pen pen, int x1, int y1, int x2, int y2 ) : void
pen Pen
x1 int
y1 int
x2 int
y2 int
Résultat void

DrawRectangles() public méthode

public DrawRectangles ( Pen pen, Rectangle rects ) : void
pen Pen
rects Rectangle
Résultat void

DrawRectangles() public méthode

public DrawRectangles ( Pen pen, RectangleF rects ) : void
pen Pen
rects RectangleF
Résultat void

DrawString() public méthode

public DrawString ( string s, Font font, Brush brush, PointF point, StringFormat format = null ) : void
s string
font Font
brush Brush
point PointF
format StringFormat
Résultat void

DrawString() public méthode

public DrawString ( string s, Font font, Brush brush, RectangleF layoutRectangle, StringFormat format = null ) : void
s string
font Font
brush Brush
layoutRectangle RectangleF
format StringFormat
Résultat void

DrawString() public méthode

public DrawString ( string s, Font font, Brush brush, float x, float y, StringFormat format = null ) : void
s string
font Font
brush Brush
x float
y float
format StringFormat
Résultat void

EndContainer() public méthode

public EndContainer ( GraphicsContainer container ) : void
container GraphicsContainer
Résultat void

ExcludeClip() public méthode

public ExcludeClip ( Rectangle rect ) : void
rect Rectangle
Résultat void

ExcludeClip() public méthode

public ExcludeClip ( RectangleF rect ) : void
rect RectangleF
Résultat void

ExcludeClip() public méthode

public ExcludeClip ( Region region ) : void
region Region
Résultat void

FillClosedCurve() public méthode

public FillClosedCurve ( Brush brush, Point points ) : void
brush Brush
points Point
Résultat void

FillClosedCurve() public méthode

public FillClosedCurve ( Brush brush, Point points, FillMode fillmode, float tension = 0.5f ) : void
brush Brush
points Point
fillmode FillMode
tension float
Résultat void

FillClosedCurve() public méthode

public FillClosedCurve ( Brush brush, PointF points ) : void
brush Brush
points PointF
Résultat void

FillClosedCurve() public méthode

public FillClosedCurve ( Brush brush, PointF points, FillMode fillmode, float tension = 0.5f ) : void
brush Brush
points PointF
fillmode FillMode
tension float
Résultat void

FillEllipse() public méthode

public FillEllipse ( Brush brush, RectangleF rect ) : void
brush Brush
rect RectangleF
Résultat void

FillEllipse() public méthode

public FillEllipse ( Brush brush, float x1, float y1, float x2, float y2 ) : void
brush Brush
x1 float
y1 float
x2 float
y2 float
Résultat void

FillEllipse() public méthode

public FillEllipse ( Brush brush, int x1, int y1, int x2, int y2 ) : void
brush Brush
x1 int
y1 int
x2 int
y2 int
Résultat void

FillPath() public méthode

public FillPath ( Brush brush, GraphicsPath path ) : void
brush Brush
path System.Drawing.Drawing2D.GraphicsPath
Résultat void

FillPie() public méthode

public FillPie ( Brush brush, Rectangle rect, float startAngle, float sweepAngle ) : void
brush Brush
rect Rectangle
startAngle float
sweepAngle float
Résultat void

FillPie() public méthode

public FillPie ( Brush brush, float x, float y, float width, float height, float startAngle, float sweepAngle ) : void
brush Brush
x float
y float
width float
height float
startAngle float
sweepAngle float
Résultat void

FillPie() public méthode

public FillPie ( Brush brush, int x, int y, int width, int height, int startAngle, int sweepAngle ) : void
brush Brush
x int
y int
width int
height int
startAngle int
sweepAngle int
Résultat void

FillPolygon() public méthode

public FillPolygon ( Brush brush, Point points, FillMode fillMode = FillMode.Alternate ) : void
brush Brush
points Point
fillMode FillMode
Résultat void

FillPolygon() public méthode

public FillPolygon ( Brush brush, PointF points, FillMode fillMode = FillMode.Alternate ) : void
brush Brush
points PointF
fillMode FillMode
Résultat void

FillRectangle() public méthode

public FillRectangle ( Brush brush, Rectangle rect ) : void
brush Brush
rect Rectangle
Résultat void

FillRectangle() public méthode

public FillRectangle ( Brush brush, RectangleF rect ) : void
brush Brush
rect RectangleF
Résultat void

FillRectangle() public méthode

public FillRectangle ( Brush brush, float x1, float y1, float x2, float y2 ) : void
brush Brush
x1 float
y1 float
x2 float
y2 float
Résultat void

FillRectangle() public méthode

public FillRectangle ( Brush brush, int x1, int y1, int x2, int y2 ) : void
brush Brush
x1 int
y1 int
x2 int
y2 int
Résultat void

FillRectangles() public méthode

public FillRectangles ( Brush brush, Rectangle rects ) : void
brush Brush
rects Rectangle
Résultat void

FillRectangles() public méthode

public FillRectangles ( Brush brush, RectangleF rects ) : void
brush Brush
rects RectangleF
Résultat void

FillRegion() public méthode

Fills the interior of a region.
public FillRegion ( Brush brush, Region region ) : void
brush Brush Brush.
region Region Region.
Résultat void

Flush() public méthode

public Flush ( ) : void
Résultat void

Flush() public méthode

public Flush ( FlushIntention intention ) : void
intention FlushIntention
Résultat void

FromContext() public static méthode

public static FromContext ( CGContext context ) : Graphics
context CGContext
Résultat Graphics

FromContext() public static méthode

public static FromContext ( CGContext context, float screenScale ) : Graphics
context CGContext
screenScale float
Résultat Graphics

FromContext() public static méthode

public static FromContext ( NSGraphicsContext context ) : Graphics
context NSGraphicsContext
Résultat Graphics

FromCurrentContext() public static méthode

public static FromCurrentContext ( ) : Graphics
Résultat Graphics

FromImage() public static méthode

public static FromImage ( Image image ) : Graphics
image Image
Résultat Graphics

GetNearestColor() public méthode

public GetNearestColor ( Color color ) : Color
color Color
Résultat Color

Graphics() public méthode

public Graphics ( CGContext context, bool flipped = true ) : AppKit
context CGContext
flipped bool
Résultat AppKit

IntersectClip() public méthode

public IntersectClip ( Rectangle rect ) : void
rect Rectangle
Résultat void

IntersectClip() public méthode

public IntersectClip ( RectangleF rect ) : void
rect RectangleF
Résultat void

IntersectClip() public méthode

public IntersectClip ( Region region ) : void
region Region
Résultat void

IsVisible() public méthode

public IsVisible ( Point point ) : bool
point Point
Résultat bool

IsVisible() public méthode

public IsVisible ( PointF point ) : bool
point PointF
Résultat bool

IsVisible() public méthode

public IsVisible ( Rectangle rect ) : bool
rect Rectangle
Résultat bool

IsVisible() public méthode

public IsVisible ( RectangleF rect ) : bool
rect RectangleF
Résultat bool

IsVisible() public méthode

public IsVisible ( float x, float y ) : bool
x float
y float
Résultat bool

IsVisible() public méthode

public IsVisible ( float x, float y, float width, float height ) : bool
x float
y float
width float
height float
Résultat bool

IsVisible() public méthode

public IsVisible ( int x, int y ) : bool
x int
y int
Résultat bool

IsVisible() public méthode

public IsVisible ( int x, int y, int width, int height ) : bool
x int
y int
width int
height int
Résultat bool

MeasureCharacterRanges() public méthode

public MeasureCharacterRanges ( string text, Font font, RectangleF layoutRect, StringFormat stringFormat ) : Region[]
text string
font Font
layoutRect RectangleF
stringFormat StringFormat
Résultat Region[]

MeasureString() public méthode

public MeasureString ( string text, Font font ) : SizeF
text string
font Font
Résultat SizeF

MeasureString() public méthode

public MeasureString ( string text, Font font, PointF point, StringFormat stringFormat ) : SizeF
text string
font Font
point PointF
stringFormat StringFormat
Résultat SizeF

MeasureString() public méthode

public MeasureString ( string textg, Font font, RectangleF rect ) : SizeF
textg string
font Font
rect RectangleF
Résultat SizeF

MeasureString() public méthode

public MeasureString ( string textg, Font font, SizeF layoutArea ) : SizeF
textg string
font Font
layoutArea SizeF
Résultat SizeF

MeasureString() public méthode

public MeasureString ( string text, Font font, SizeF layoutArea, StringFormat stringFormat ) : SizeF
text string
font Font
layoutArea SizeF
stringFormat StringFormat
Résultat SizeF

MeasureString() public méthode

public MeasureString ( string text, Font font, SizeF layoutArea, StringFormat stringFormat, int &charactersFitted, int &linesFilled ) : SizeF
text string
font Font
layoutArea SizeF
stringFormat StringFormat
charactersFitted int
linesFilled int
Résultat SizeF

MeasureString() public méthode

public MeasureString ( string textg, Font font, int width ) : SizeF
textg string
font Font
width int
Résultat SizeF

MeasureString() public méthode

public MeasureString ( string text, Font font, int width, StringFormat format ) : SizeF
text string
font Font
width int
format StringFormat
Résultat SizeF

MultiplyTransform() public méthode

public MultiplyTransform ( Matrix matrix ) : void
matrix Matrix
Résultat void

MultiplyTransform() public méthode

public MultiplyTransform ( Matrix matrix, MatrixOrder order ) : void
matrix Matrix
order MatrixOrder
Résultat void

ResetClip() public méthode

public ResetClip ( ) : void
Résultat void

ResetTransform() public méthode

public ResetTransform ( ) : void
Résultat void

Restore() public méthode

public Restore ( GraphicsState state ) : void
state GraphicsState
Résultat void

RotateTransform() public méthode

public RotateTransform ( float angle ) : void
angle float
Résultat void

RotateTransform() public méthode

public RotateTransform ( float angle, MatrixOrder order ) : void
angle float
order MatrixOrder
Résultat void

Save() public méthode

public Save ( ) : GraphicsState
Résultat GraphicsState

ScaleTransform() public méthode

public ScaleTransform ( float sx, float sy ) : void
sx float
sy float
Résultat void

ScaleTransform() public méthode

public ScaleTransform ( float sx, float sy, MatrixOrder order ) : void
sx float
sy float
order MatrixOrder
Résultat void

SetClip() public méthode

public SetClip ( Graphics g ) : void
g Graphics
Résultat void

SetClip() public méthode

public SetClip ( Graphics g, CombineMode combineMode ) : void
g Graphics
combineMode CombineMode
Résultat void

SetClip() public méthode

public SetClip ( GraphicsPath graphicsPath ) : void
graphicsPath GraphicsPath
Résultat void

SetClip() public méthode

public SetClip ( GraphicsPath graphicsPath, CombineMode combineMode ) : void
graphicsPath GraphicsPath
combineMode CombineMode
Résultat void

SetClip() public méthode

public SetClip ( Rectangle rect ) : void
rect Rectangle
Résultat void

SetClip() public méthode

public SetClip ( Rectangle rect, CombineMode combineMode ) : void
rect Rectangle
combineMode CombineMode
Résultat void

SetClip() public méthode

public SetClip ( RectangleF rect ) : void
rect RectangleF
Résultat void

SetClip() public méthode

public SetClip ( RectangleF rect, CombineMode combineMode ) : void
rect RectangleF
combineMode CombineMode
Résultat void

SetClip() public méthode

public SetClip ( Region region, CombineMode combineMode ) : void
region Region
combineMode CombineMode
Résultat void

TransformPoints() public méthode

public TransformPoints ( CoordinateSpace destSpace, CoordinateSpace srcSpace, Point pts ) : void
destSpace CoordinateSpace
srcSpace CoordinateSpace
pts Point
Résultat void

TransformPoints() public méthode

public TransformPoints ( CoordinateSpace destSpace, CoordinateSpace srcSpace, PointF pts ) : void
destSpace CoordinateSpace
srcSpace CoordinateSpace
pts PointF
Résultat void

TranslateClip() public méthode

public TranslateClip ( float dx, float dy ) : void
dx float
dy float
Résultat void

TranslateClip() public méthode

public TranslateClip ( int dx, int dy ) : void
dx int
dy int
Résultat void

TranslateTransform() public méthode

public TranslateTransform ( float tx, float ty ) : void
tx float
ty float
Résultat void

TranslateTransform() public méthode

public TranslateTransform ( float tx, float ty, MatrixOrder order ) : void
tx float
ty float
order MatrixOrder
Résultat void

drawEllipticalArcToContext() public méthode

public drawEllipticalArcToContext ( int degree, double threshold ) : void
degree int
threshold double
Résultat void

Property Details

eta1 protected_oe property

protected double eta1
Résultat double

eta2 protected_oe property

protected double eta2
Résultat double

isPieSlice protected_oe property

protected bool isPieSlice
Résultat bool

xF1 protected_oe property

protected double xF1
Résultat double

xF2 protected_oe property

protected double xF2
Résultat double

yF1 protected_oe property

protected double yF1
Résultat double

yF2 protected_oe property

protected double yF2
Résultat double