C# Класс System.Drawing.Graphics

Наследование: System.MarshalByRefObject, IDeviceContext, IDisposable
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
eta1 double
eta2 double
isPieSlice bool
xF1 double
xF2 double
yF1 double
yF2 double

Открытые методы

Метод Описание
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

Приватные методы

Метод Описание
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

Описание методов

BeginContainer() публичный метод

public BeginContainer ( ) : GraphicsContainer
Результат GraphicsContainer

BeginContainer() публичный метод

public BeginContainer ( Rectangle dstRect, Rectangle srcRect, GraphicsUnit unit ) : GraphicsContainer
dstRect Rectangle
srcRect Rectangle
unit GraphicsUnit
Результат GraphicsContainer

BeginContainer() публичный метод

public BeginContainer ( RectangleF dstRect, RectangleF srcRect, GraphicsUnit unit ) : GraphicsContainer
dstRect RectangleF
srcRect RectangleF
unit GraphicsUnit
Результат GraphicsContainer

Clear() публичный метод

public Clear ( Color color ) : void
color Color
Результат void

Dispose() публичный метод

public Dispose ( ) : void
Результат void

DrawArc() публичный метод

public DrawArc ( Pen pen, Rectangle rect, float startAngle, float sweepAngle ) : void
pen Pen
rect Rectangle
startAngle float
sweepAngle float
Результат void

DrawArc() публичный метод

public DrawArc ( Pen pen, RectangleF rect, float startAngle, float sweepAngle ) : void
pen Pen
rect RectangleF
startAngle float
sweepAngle float
Результат void

DrawArc() публичный метод

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
Результат void

DrawArc() публичный метод

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
Результат void

DrawBezier() публичный метод

public DrawBezier ( Pen pen, Point pt1, Point pt2, Point pt3, Point pt4 ) : void
pen Pen
pt1 Point
pt2 Point
pt3 Point
pt4 Point
Результат void

DrawBezier() публичный метод

public DrawBezier ( Pen pen, PointF pt1, PointF pt2, PointF pt3, PointF pt4 ) : void
pen Pen
pt1 PointF
pt2 PointF
pt3 PointF
pt4 PointF
Результат void

DrawBezier() публичный метод

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
Результат void

DrawBeziers() публичный метод

public DrawBeziers ( Pen pen, Point points ) : void
pen Pen
points Point
Результат void

DrawBeziers() публичный метод

public DrawBeziers ( Pen pen, PointF points ) : void
pen Pen
points PointF
Результат void

DrawClosedCurve() публичный метод

public DrawClosedCurve ( Pen pen, Point points ) : void
pen Pen
points Point
Результат void

DrawClosedCurve() публичный метод

public DrawClosedCurve ( Pen pen, Point points, float tension, FillMode fillmode ) : void
pen Pen
points Point
tension float
fillmode FillMode
Результат void

DrawClosedCurve() публичный метод

public DrawClosedCurve ( Pen pen, PointF points ) : void
pen Pen
points PointF
Результат void

DrawClosedCurve() публичный метод

public DrawClosedCurve ( Pen pen, PointF points, float tension, FillMode fillmode ) : void
pen Pen
points PointF
tension float
fillmode FillMode
Результат void

DrawCurve() публичный метод

public DrawCurve ( Pen pen, Point points, float tension = 0.5f ) : void
pen Pen
points Point
tension float
Результат void

DrawCurve() публичный метод

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
Результат void

DrawCurve() публичный метод

public DrawCurve ( Pen pen, PointF points, float tension = 0.5f ) : void
pen Pen
points PointF
tension float
Результат void

DrawCurve() публичный метод

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
Результат void

DrawEllipse() публичный метод

public DrawEllipse ( Pen pen, Rectangle rect ) : void
pen Pen
rect Rectangle
Результат void

DrawEllipse() публичный метод

public DrawEllipse ( Pen pen, RectangleF rect ) : void
pen Pen
rect RectangleF
Результат void

DrawEllipse() публичный метод

public DrawEllipse ( Pen pen, float x, float y, float width, float height ) : void
pen Pen
x float
y float
width float
height float
Результат void

DrawEllipse() публичный метод

public DrawEllipse ( Pen pen, int x1, int y1, int x2, int y2 ) : void
pen Pen
x1 int
y1 int
x2 int
y2 int
Результат void

DrawEllipticalArc() публичный метод

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
Результат void

DrawIcon() публичный метод

public DrawIcon ( Icon icon, Rectangle targetRect ) : void
icon Icon
targetRect Rectangle
Результат void

DrawIcon() публичный метод

public DrawIcon ( Icon icon, int x, int y ) : void
icon Icon
x int
y int
Результат void

DrawIconUnstretched() публичный метод

public DrawIconUnstretched ( Icon icon, Rectangle targetRect ) : void
icon Icon
targetRect Rectangle
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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
Результат void

DrawImage() публичный метод

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
Результат void

DrawImage() публичный метод

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
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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
Результат void

DrawImage() публичный метод

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
Результат void

DrawImage() публичный метод

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
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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
Результат void

DrawImage() публичный метод

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
Результат void

DrawImage() публичный метод

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
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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
Результат void

DrawImage() публичный метод

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
Результат void

DrawImage() публичный метод

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
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

public DrawImage ( Image image, float x, float y, float width, float height ) : void
image Image
x float
y float
width float
height float
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImage() публичный метод

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.
Результат void

DrawImageUnscaled() публичный метод

public DrawImageUnscaled ( Image image, Point point ) : void
image Image
point Point
Результат void

DrawImageUnscaled() публичный метод

public DrawImageUnscaled ( Image image, Rectangle rect ) : void
image Image
rect Rectangle
Результат void

DrawImageUnscaled() публичный метод

public DrawImageUnscaled ( Image image, int x, int y ) : void
image Image
x int
y int
Результат void

DrawImageUnscaled() публичный метод

public DrawImageUnscaled ( Image image, int x, int y, int width, int height ) : void
image Image
x int
y int
width int
height int
Результат void

DrawImageUnscaledAndClipped() публичный метод

public DrawImageUnscaledAndClipped ( Image image, Rectangle rect ) : void
image Image
rect Rectangle
Результат void

DrawLine() публичный метод

public DrawLine ( Pen pen, Point pt1, Point pt2 ) : void
pen Pen
pt1 Point
pt2 Point
Результат void

DrawLine() публичный метод

public DrawLine ( Pen pen, PointF pt1, PointF pt2 ) : void
pen Pen
pt1 PointF
pt2 PointF
Результат void

DrawLine() публичный метод

public DrawLine ( Pen pen, float x1, float y1, float x2, float y2 ) : void
pen Pen
x1 float
y1 float
x2 float
y2 float
Результат void

DrawLine() публичный метод

public DrawLine ( Pen pen, int x1, int y1, int x2, int y2 ) : void
pen Pen
x1 int
y1 int
x2 int
y2 int
Результат void

DrawLines() публичный метод

public DrawLines ( Pen pen, Point points ) : void
pen Pen
points Point
Результат void

DrawLines() публичный метод

public DrawLines ( Pen pen, PointF points ) : void
pen Pen
points PointF
Результат void

DrawPath() публичный метод

public DrawPath ( Pen pen, GraphicsPath path ) : void
pen Pen
path System.Drawing.Drawing2D.GraphicsPath
Результат void

DrawPie() публичный метод

public DrawPie ( Pen pen, Rectangle rect, float startAngle, float sweepAngle ) : void
pen Pen
rect Rectangle
startAngle float
sweepAngle float
Результат void

DrawPie() публичный метод

public DrawPie ( Pen pen, RectangleF rect, float startAngle, float sweepAngle ) : void
pen Pen
rect RectangleF
startAngle float
sweepAngle float
Результат void

DrawPie() публичный метод

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
Результат void

DrawPolygon() публичный метод

public DrawPolygon ( Pen pen, Point points ) : void
pen Pen
points Point
Результат void

DrawPolygon() публичный метод

public DrawPolygon ( Pen pen, PointF points ) : void
pen Pen
points PointF
Результат void

DrawRectangle() публичный метод

public DrawRectangle ( Pen pen, Rectangle rect ) : void
pen Pen
rect Rectangle
Результат void

DrawRectangle() публичный метод

public DrawRectangle ( Pen pen, float x1, float y1, float x2, float y2 ) : void
pen Pen
x1 float
y1 float
x2 float
y2 float
Результат void

DrawRectangle() публичный метод

public DrawRectangle ( Pen pen, int x1, int y1, int x2, int y2 ) : void
pen Pen
x1 int
y1 int
x2 int
y2 int
Результат void

DrawRectangles() публичный метод

public DrawRectangles ( Pen pen, Rectangle rects ) : void
pen Pen
rects Rectangle
Результат void

DrawRectangles() публичный метод

public DrawRectangles ( Pen pen, RectangleF rects ) : void
pen Pen
rects RectangleF
Результат void

DrawString() публичный метод

public DrawString ( string s, Font font, Brush brush, PointF point, StringFormat format = null ) : void
s string
font Font
brush Brush
point PointF
format StringFormat
Результат void

DrawString() публичный метод

public DrawString ( string s, Font font, Brush brush, RectangleF layoutRectangle, StringFormat format = null ) : void
s string
font Font
brush Brush
layoutRectangle RectangleF
format StringFormat
Результат void

DrawString() публичный метод

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
Результат void

EndContainer() публичный метод

public EndContainer ( GraphicsContainer container ) : void
container GraphicsContainer
Результат void

ExcludeClip() публичный метод

public ExcludeClip ( Rectangle rect ) : void
rect Rectangle
Результат void

ExcludeClip() публичный метод

public ExcludeClip ( RectangleF rect ) : void
rect RectangleF
Результат void

ExcludeClip() публичный метод

public ExcludeClip ( Region region ) : void
region Region
Результат void

FillClosedCurve() публичный метод

public FillClosedCurve ( Brush brush, Point points ) : void
brush Brush
points Point
Результат void

FillClosedCurve() публичный метод

public FillClosedCurve ( Brush brush, Point points, FillMode fillmode, float tension = 0.5f ) : void
brush Brush
points Point
fillmode FillMode
tension float
Результат void

FillClosedCurve() публичный метод

public FillClosedCurve ( Brush brush, PointF points ) : void
brush Brush
points PointF
Результат void

FillClosedCurve() публичный метод

public FillClosedCurve ( Brush brush, PointF points, FillMode fillmode, float tension = 0.5f ) : void
brush Brush
points PointF
fillmode FillMode
tension float
Результат void

FillEllipse() публичный метод

public FillEllipse ( Brush brush, RectangleF rect ) : void
brush Brush
rect RectangleF
Результат void

FillEllipse() публичный метод

public FillEllipse ( Brush brush, float x1, float y1, float x2, float y2 ) : void
brush Brush
x1 float
y1 float
x2 float
y2 float
Результат void

FillEllipse() публичный метод

public FillEllipse ( Brush brush, int x1, int y1, int x2, int y2 ) : void
brush Brush
x1 int
y1 int
x2 int
y2 int
Результат void

FillPath() публичный метод

public FillPath ( Brush brush, GraphicsPath path ) : void
brush Brush
path System.Drawing.Drawing2D.GraphicsPath
Результат void

FillPie() публичный метод

public FillPie ( Brush brush, Rectangle rect, float startAngle, float sweepAngle ) : void
brush Brush
rect Rectangle
startAngle float
sweepAngle float
Результат void

FillPie() публичный метод

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
Результат void

FillPie() публичный метод

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
Результат void

FillPolygon() публичный метод

public FillPolygon ( Brush brush, Point points, FillMode fillMode = FillMode.Alternate ) : void
brush Brush
points Point
fillMode FillMode
Результат void

FillPolygon() публичный метод

public FillPolygon ( Brush brush, PointF points, FillMode fillMode = FillMode.Alternate ) : void
brush Brush
points PointF
fillMode FillMode
Результат void

FillRectangle() публичный метод

public FillRectangle ( Brush brush, Rectangle rect ) : void
brush Brush
rect Rectangle
Результат void

FillRectangle() публичный метод

public FillRectangle ( Brush brush, RectangleF rect ) : void
brush Brush
rect RectangleF
Результат void

FillRectangle() публичный метод

public FillRectangle ( Brush brush, float x1, float y1, float x2, float y2 ) : void
brush Brush
x1 float
y1 float
x2 float
y2 float
Результат void

FillRectangle() публичный метод

public FillRectangle ( Brush brush, int x1, int y1, int x2, int y2 ) : void
brush Brush
x1 int
y1 int
x2 int
y2 int
Результат void

FillRectangles() публичный метод

public FillRectangles ( Brush brush, Rectangle rects ) : void
brush Brush
rects Rectangle
Результат void

FillRectangles() публичный метод

public FillRectangles ( Brush brush, RectangleF rects ) : void
brush Brush
rects RectangleF
Результат void

FillRegion() публичный метод

Fills the interior of a region.
public FillRegion ( Brush brush, Region region ) : void
brush Brush Brush.
region Region Region.
Результат void

Flush() публичный метод

public Flush ( ) : void
Результат void

Flush() публичный метод

public Flush ( FlushIntention intention ) : void
intention FlushIntention
Результат void

FromContext() публичный статический метод

public static FromContext ( CGContext context ) : Graphics
context CGContext
Результат Graphics

FromContext() публичный статический метод

public static FromContext ( CGContext context, float screenScale ) : Graphics
context CGContext
screenScale float
Результат Graphics

FromContext() публичный статический метод

public static FromContext ( NSGraphicsContext context ) : Graphics
context NSGraphicsContext
Результат Graphics

FromCurrentContext() публичный статический метод

public static FromCurrentContext ( ) : Graphics
Результат Graphics

FromImage() публичный статический метод

public static FromImage ( Image image ) : Graphics
image Image
Результат Graphics

GetNearestColor() публичный метод

public GetNearestColor ( Color color ) : Color
color Color
Результат Color

Graphics() публичный метод

public Graphics ( CGContext context, bool flipped = true ) : AppKit
context CGContext
flipped bool
Результат AppKit

IntersectClip() публичный метод

public IntersectClip ( Rectangle rect ) : void
rect Rectangle
Результат void

IntersectClip() публичный метод

public IntersectClip ( RectangleF rect ) : void
rect RectangleF
Результат void

IntersectClip() публичный метод

public IntersectClip ( Region region ) : void
region Region
Результат void

IsVisible() публичный метод

public IsVisible ( Point point ) : bool
point Point
Результат bool

IsVisible() публичный метод

public IsVisible ( PointF point ) : bool
point PointF
Результат bool

IsVisible() публичный метод

public IsVisible ( Rectangle rect ) : bool
rect Rectangle
Результат bool

IsVisible() публичный метод

public IsVisible ( RectangleF rect ) : bool
rect RectangleF
Результат bool

IsVisible() публичный метод

public IsVisible ( float x, float y ) : bool
x float
y float
Результат bool

IsVisible() публичный метод

public IsVisible ( float x, float y, float width, float height ) : bool
x float
y float
width float
height float
Результат bool

IsVisible() публичный метод

public IsVisible ( int x, int y ) : bool
x int
y int
Результат bool

IsVisible() публичный метод

public IsVisible ( int x, int y, int width, int height ) : bool
x int
y int
width int
height int
Результат bool

MeasureCharacterRanges() публичный метод

public MeasureCharacterRanges ( string text, Font font, RectangleF layoutRect, StringFormat stringFormat ) : Region[]
text string
font Font
layoutRect RectangleF
stringFormat StringFormat
Результат Region[]

MeasureString() публичный метод

public MeasureString ( string text, Font font ) : SizeF
text string
font Font
Результат SizeF

MeasureString() публичный метод

public MeasureString ( string text, Font font, PointF point, StringFormat stringFormat ) : SizeF
text string
font Font
point PointF
stringFormat StringFormat
Результат SizeF

MeasureString() публичный метод

public MeasureString ( string textg, Font font, RectangleF rect ) : SizeF
textg string
font Font
rect RectangleF
Результат SizeF

MeasureString() публичный метод

public MeasureString ( string textg, Font font, SizeF layoutArea ) : SizeF
textg string
font Font
layoutArea SizeF
Результат SizeF

MeasureString() публичный метод

public MeasureString ( string text, Font font, SizeF layoutArea, StringFormat stringFormat ) : SizeF
text string
font Font
layoutArea SizeF
stringFormat StringFormat
Результат SizeF

MeasureString() публичный метод

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
Результат SizeF

MeasureString() публичный метод

public MeasureString ( string textg, Font font, int width ) : SizeF
textg string
font Font
width int
Результат SizeF

MeasureString() публичный метод

public MeasureString ( string text, Font font, int width, StringFormat format ) : SizeF
text string
font Font
width int
format StringFormat
Результат SizeF

MultiplyTransform() публичный метод

public MultiplyTransform ( Matrix matrix ) : void
matrix Matrix
Результат void

MultiplyTransform() публичный метод

public MultiplyTransform ( Matrix matrix, MatrixOrder order ) : void
matrix Matrix
order MatrixOrder
Результат void

ResetClip() публичный метод

public ResetClip ( ) : void
Результат void

ResetTransform() публичный метод

public ResetTransform ( ) : void
Результат void

Restore() публичный метод

public Restore ( GraphicsState state ) : void
state GraphicsState
Результат void

RotateTransform() публичный метод

public RotateTransform ( float angle ) : void
angle float
Результат void

RotateTransform() публичный метод

public RotateTransform ( float angle, MatrixOrder order ) : void
angle float
order MatrixOrder
Результат void

Save() публичный метод

public Save ( ) : GraphicsState
Результат GraphicsState

ScaleTransform() публичный метод

public ScaleTransform ( float sx, float sy ) : void
sx float
sy float
Результат void

ScaleTransform() публичный метод

public ScaleTransform ( float sx, float sy, MatrixOrder order ) : void
sx float
sy float
order MatrixOrder
Результат void

SetClip() публичный метод

public SetClip ( Graphics g ) : void
g Graphics
Результат void

SetClip() публичный метод

public SetClip ( Graphics g, CombineMode combineMode ) : void
g Graphics
combineMode CombineMode
Результат void

SetClip() публичный метод

public SetClip ( GraphicsPath graphicsPath ) : void
graphicsPath GraphicsPath
Результат void

SetClip() публичный метод

public SetClip ( GraphicsPath graphicsPath, CombineMode combineMode ) : void
graphicsPath GraphicsPath
combineMode CombineMode
Результат void

SetClip() публичный метод

public SetClip ( Rectangle rect ) : void
rect Rectangle
Результат void

SetClip() публичный метод

public SetClip ( Rectangle rect, CombineMode combineMode ) : void
rect Rectangle
combineMode CombineMode
Результат void

SetClip() публичный метод

public SetClip ( RectangleF rect ) : void
rect RectangleF
Результат void

SetClip() публичный метод

public SetClip ( RectangleF rect, CombineMode combineMode ) : void
rect RectangleF
combineMode CombineMode
Результат void

SetClip() публичный метод

public SetClip ( Region region, CombineMode combineMode ) : void
region Region
combineMode CombineMode
Результат void

TransformPoints() публичный метод

public TransformPoints ( CoordinateSpace destSpace, CoordinateSpace srcSpace, Point pts ) : void
destSpace CoordinateSpace
srcSpace CoordinateSpace
pts Point
Результат void

TransformPoints() публичный метод

public TransformPoints ( CoordinateSpace destSpace, CoordinateSpace srcSpace, PointF pts ) : void
destSpace CoordinateSpace
srcSpace CoordinateSpace
pts PointF
Результат void

TranslateClip() публичный метод

public TranslateClip ( float dx, float dy ) : void
dx float
dy float
Результат void

TranslateClip() публичный метод

public TranslateClip ( int dx, int dy ) : void
dx int
dy int
Результат void

TranslateTransform() публичный метод

public TranslateTransform ( float tx, float ty ) : void
tx float
ty float
Результат void

TranslateTransform() публичный метод

public TranslateTransform ( float tx, float ty, MatrixOrder order ) : void
tx float
ty float
order MatrixOrder
Результат void

drawEllipticalArcToContext() публичный метод

public drawEllipticalArcToContext ( int degree, double threshold ) : void
degree int
threshold double
Результат void

Описание свойств

eta1 защищенное свойство

protected double eta1
Результат double

eta2 защищенное свойство

protected double eta2
Результат double

isPieSlice защищенное свойство

protected bool isPieSlice
Результат bool

xF1 защищенное свойство

protected double xF1
Результат double

xF2 защищенное свойство

protected double xF2
Результат double

yF1 защищенное свойство

protected double yF1
Результат double

yF2 защищенное свойство

protected double yF2
Результат double