C# 클래스 GraphicsImplementation.GDIGraphics

상속: IGraphics
파일 보기 프로젝트 열기: filipkunc/GLGraphics 1 사용 예제들

공개 메소드들

메소드 설명
AddMetafileComment ( byte data ) : void
BeginContainer ( ) : GraphicsContainer
BeginContainer ( Rectangle dstrect, Rectangle srcrect, GraphicsUnit unit ) : GraphicsContainer
BeginContainer ( RectangleF dstrect, RectangleF srcrect, GraphicsUnit unit ) : GraphicsContainer
Clear ( Color color ) : void
CopyFromScreen ( Point upperLeftSource, Point upperLeftDestination, Size blockRegionSize ) : void
CopyFromScreen ( Point upperLeftSource, Point upperLeftDestination, Size blockRegionSize, CopyPixelOperation copyPixelOperation ) : void
CopyFromScreen ( int sourceX, int sourceY, int destinationX, int destinationY, Size blockRegionSize ) : void
CopyFromScreen ( int sourceX, int sourceY, int destinationX, int destinationY, Size blockRegionSize, CopyPixelOperation copyPixelOperation ) : 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 ) : void
DrawCurve ( Pen pen, Point points, float tension ) : void
DrawCurve ( Pen pen, Point points, int offset, int numberOfSegments, float tension ) : void
DrawCurve ( Pen pen, PointF points ) : void
DrawCurve ( Pen pen, PointF points, float tension ) : void
DrawCurve ( Pen pen, PointF points, int offset, int numberOfSegments ) : void
DrawCurve ( Pen pen, PointF points, int offset, int numberOfSegments, float tension ) : 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 x, int y, int width, int height ) : 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 point ) : void
DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit ) : void
DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, Graphics callback ) : void
DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, Graphics callback, int callbackData ) : void
DrawImage ( Image image, PointF point ) : void
DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit ) : void
DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, Graphics callback ) : void
DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, Graphics callback, int callbackData ) : void
DrawImage ( Image image, Rectangle rect ) : void
DrawImage ( Image image, Rectangle destRect, Rectangle srcRect, GraphicsUnit srcUnit ) : void
DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit ) : void
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, Graphics callback ) : void
DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, Graphics callback, IntPtr callbackData ) : void
DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit ) : void
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, Graphics callback ) : void
DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, Graphics callback, IntPtr callbackData ) : void
DrawImage ( Image image, RectangleF rect ) : void
DrawImage ( Image image, RectangleF destRect, RectangleF srcRect, GraphicsUnit srcUnit ) : void
DrawImage ( Image image, float x, float y ) : void
DrawImage ( Image image, float x, float y, RectangleF srcRect, GraphicsUnit srcUnit ) : void
DrawImage ( Image image, float x, float y, float width, float height ) : void
DrawImage ( Image image, int x, int y ) : void
DrawImage ( Image image, int x, int y, Rectangle srcRect, GraphicsUnit srcUnit ) : void
DrawImage ( Image image, int x, int y, int width, int height ) : void
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
DrawPie ( Pen pen, int x, int y, int width, int height, int startAngle, int sweepAngle ) : void
DrawPolygon ( Pen pen, Point points ) : void
DrawPolygon ( Pen pen, PointF points ) : void
DrawRectangle ( Pen pen, Rectangle rect ) : void
DrawRectangle ( Pen pen, float x, float y, float width, float height ) : void
DrawRectangle ( Pen pen, int x, int y, int width, int height ) : void
DrawRectangles ( Pen pen, Rectangle rects ) : void
DrawRectangles ( Pen pen, RectangleF rects ) : void
DrawString ( string s, Font font, Brush brush, PointF point ) : void
DrawString ( string s, Font font, Brush brush, PointF point, StringFormat format ) : void
DrawString ( string s, Font font, Brush brush, RectangleF layoutRectangle ) : void
DrawString ( string s, Font font, Brush brush, RectangleF layoutRectangle, StringFormat format ) : void
DrawString ( string s, Font font, Brush brush, float x, float y ) : void
DrawString ( string s, Font font, Brush brush, float x, float y, StringFormat format ) : void
EndContainer ( GraphicsContainer container ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Point destPoint, Graphics callback ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Point destPoint, Graphics callback, IntPtr callbackData ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Point destPoint, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Point destPoint, Rectangle srcRect, GraphicsUnit srcUnit, Graphics callback ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Point destPoint, Rectangle srcRect, GraphicsUnit srcUnit, Graphics callback, IntPtr callbackData ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Point destPoint, Rectangle srcRect, GraphicsUnit unit, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, PointF destPoint, Graphics callback ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, PointF destPoint, Graphics callback, IntPtr callbackData ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, PointF destPoint, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, PointF destPoint, RectangleF srcRect, GraphicsUnit srcUnit, Graphics callback ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, PointF destPoint, RectangleF srcRect, GraphicsUnit srcUnit, Graphics callback, IntPtr callbackData ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, PointF destPoint, RectangleF srcRect, GraphicsUnit unit, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Rectangle destRect, Graphics callback ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Rectangle destRect, Graphics callback, IntPtr callbackData ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Rectangle destRect, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Rectangle destRect, Rectangle srcRect, GraphicsUnit srcUnit, Graphics callback ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Rectangle destRect, Rectangle srcRect, GraphicsUnit srcUnit, Graphics callback, IntPtr callbackData ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Rectangle destRect, Rectangle srcRect, GraphicsUnit unit, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, RectangleF destRect, Graphics callback ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, RectangleF destRect, Graphics callback, IntPtr callbackData ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, RectangleF destRect, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, RectangleF destRect, RectangleF srcRect, GraphicsUnit srcUnit, Graphics callback ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, RectangleF destRect, RectangleF srcRect, GraphicsUnit srcUnit, Graphics callback, IntPtr callbackData ) : void
EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, RectangleF destRect, RectangleF srcRect, GraphicsUnit unit, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
ExcludeClip ( Rectangle rect ) : void
ExcludeClip ( Region region ) : void
FillClosedCurve ( Brush brush, Point points ) : void
FillClosedCurve ( Brush brush, Point points, FillMode fillmode ) : void
FillClosedCurve ( Brush brush, Point points, FillMode fillmode, float tension ) : void
FillClosedCurve ( Brush brush, PointF points ) : void
FillClosedCurve ( Brush brush, PointF points, FillMode fillmode ) : void
FillClosedCurve ( Brush brush, PointF points, FillMode fillmode, float tension ) : void
FillEllipse ( Brush brush, Rectangle rect ) : void
FillEllipse ( Brush brush, RectangleF rect ) : void
FillEllipse ( Brush brush, float x, float y, float width, float height ) : void
FillEllipse ( Brush brush, int x, int y, int width, int height ) : 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 ) : void
FillPolygon ( Brush brush, Point points, FillMode fillMode ) : void
FillPolygon ( Brush brush, PointF points ) : void
FillPolygon ( Brush brush, PointF points, FillMode fillMode ) : void
FillRectangle ( Brush brush, Rectangle rect ) : void
FillRectangle ( Brush brush, RectangleF rect ) : void
FillRectangle ( Brush brush, float x, float y, float width, float height ) : void
FillRectangle ( Brush brush, int x, int y, int width, int height ) : void
FillRectangles ( Brush brush, Rectangle rects ) : void
FillRectangles ( Brush brush, RectangleF rects ) : void
FillRegion ( Brush brush, Region region ) : void
Flush ( ) : void
Flush ( FlushIntention intention ) : void
GDIGraphics ( Graphics graphics ) : System
GetContextInfo ( ) : object
GetHdc ( ) : IntPtr
GetNearestColor ( Color color ) : Color
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 ) : System.Drawing.Region[]
MeasureString ( string text, Font font ) : SizeF
MeasureString ( string text, Font font, PointF origin, StringFormat stringFormat ) : SizeF
MeasureString ( string text, 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 text, 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
ReleaseHdc ( ) : void
ReleaseHdc ( IntPtr hdc ) : void
ReleaseHdcInternal ( IntPtr hdc ) : void
ResetClip ( ) : void
ResetTransform ( ) : void
Restore ( System.Drawing.Drawing2D.GraphicsState gstate ) : void
RotateTransform ( float angle ) : void
RotateTransform ( float angle, MatrixOrder order ) : void
Save ( ) : System.Drawing.Drawing2D.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 path ) : void
SetClip ( GraphicsPath path, 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 dx, float dy ) : void
TranslateTransform ( float dx, float dy, MatrixOrder order ) : void

메소드 상세

AddMetafileComment() 공개 메소드

public AddMetafileComment ( byte data ) : void
data byte
리턴 void

BeginContainer() 공개 메소드

public BeginContainer ( ) : GraphicsContainer
리턴 GraphicsContainer

BeginContainer() 공개 메소드

public BeginContainer ( Rectangle dstrect, Rectangle srcrect, GraphicsUnit unit ) : GraphicsContainer
dstrect System.Drawing.Rectangle
srcrect System.Drawing.Rectangle
unit GraphicsUnit
리턴 GraphicsContainer

BeginContainer() 공개 메소드

public BeginContainer ( RectangleF dstrect, RectangleF srcrect, GraphicsUnit unit ) : GraphicsContainer
dstrect System.Drawing.RectangleF
srcrect System.Drawing.RectangleF
unit GraphicsUnit
리턴 GraphicsContainer

Clear() 공개 메소드

public Clear ( Color color ) : void
color Color
리턴 void

CopyFromScreen() 공개 메소드

public CopyFromScreen ( Point upperLeftSource, Point upperLeftDestination, Size blockRegionSize ) : void
upperLeftSource Point
upperLeftDestination Point
blockRegionSize System.Drawing.Size
리턴 void

CopyFromScreen() 공개 메소드

public CopyFromScreen ( Point upperLeftSource, Point upperLeftDestination, Size blockRegionSize, CopyPixelOperation copyPixelOperation ) : void
upperLeftSource Point
upperLeftDestination Point
blockRegionSize System.Drawing.Size
copyPixelOperation CopyPixelOperation
리턴 void

CopyFromScreen() 공개 메소드

public CopyFromScreen ( int sourceX, int sourceY, int destinationX, int destinationY, Size blockRegionSize ) : void
sourceX int
sourceY int
destinationX int
destinationY int
blockRegionSize System.Drawing.Size
리턴 void

CopyFromScreen() 공개 메소드

public CopyFromScreen ( int sourceX, int sourceY, int destinationX, int destinationY, Size blockRegionSize, CopyPixelOperation copyPixelOperation ) : void
sourceX int
sourceY int
destinationX int
destinationY int
blockRegionSize System.Drawing.Size
copyPixelOperation CopyPixelOperation
리턴 void

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

DrawArc() 공개 메소드

public DrawArc ( Pen pen, Rectangle rect, float startAngle, float sweepAngle ) : void
pen System.Drawing.Pen
rect System.Drawing.Rectangle
startAngle float
sweepAngle float
리턴 void

DrawArc() 공개 메소드

public DrawArc ( Pen pen, RectangleF rect, float startAngle, float sweepAngle ) : void
pen System.Drawing.Pen
rect System.Drawing.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 System.Drawing.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 System.Drawing.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 System.Drawing.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 System.Drawing.Pen
pt1 System.Drawing.PointF
pt2 System.Drawing.PointF
pt3 System.Drawing.PointF
pt4 System.Drawing.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 System.Drawing.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 System.Drawing.Pen
points Point
리턴 void

DrawBeziers() 공개 메소드

public DrawBeziers ( Pen pen, PointF points ) : void
pen System.Drawing.Pen
points System.Drawing.PointF
리턴 void

DrawClosedCurve() 공개 메소드

public DrawClosedCurve ( Pen pen, Point points ) : void
pen System.Drawing.Pen
points Point
리턴 void

DrawClosedCurve() 공개 메소드

public DrawClosedCurve ( Pen pen, Point points, float tension, FillMode fillmode ) : void
pen System.Drawing.Pen
points Point
tension float
fillmode FillMode
리턴 void

DrawClosedCurve() 공개 메소드

public DrawClosedCurve ( Pen pen, PointF points ) : void
pen System.Drawing.Pen
points System.Drawing.PointF
리턴 void

DrawClosedCurve() 공개 메소드

public DrawClosedCurve ( Pen pen, PointF points, float tension, FillMode fillmode ) : void
pen System.Drawing.Pen
points System.Drawing.PointF
tension float
fillmode FillMode
리턴 void

DrawCurve() 공개 메소드

public DrawCurve ( Pen pen, Point points ) : void
pen System.Drawing.Pen
points Point
리턴 void

DrawCurve() 공개 메소드

public DrawCurve ( Pen pen, Point points, float tension ) : void
pen System.Drawing.Pen
points Point
tension float
리턴 void

DrawCurve() 공개 메소드

public DrawCurve ( Pen pen, Point points, int offset, int numberOfSegments, float tension ) : void
pen System.Drawing.Pen
points Point
offset int
numberOfSegments int
tension float
리턴 void

DrawCurve() 공개 메소드

public DrawCurve ( Pen pen, PointF points ) : void
pen System.Drawing.Pen
points System.Drawing.PointF
리턴 void

DrawCurve() 공개 메소드

public DrawCurve ( Pen pen, PointF points, float tension ) : void
pen System.Drawing.Pen
points System.Drawing.PointF
tension float
리턴 void

DrawCurve() 공개 메소드

public DrawCurve ( Pen pen, PointF points, int offset, int numberOfSegments ) : void
pen System.Drawing.Pen
points System.Drawing.PointF
offset int
numberOfSegments int
리턴 void

DrawCurve() 공개 메소드

public DrawCurve ( Pen pen, PointF points, int offset, int numberOfSegments, float tension ) : void
pen System.Drawing.Pen
points System.Drawing.PointF
offset int
numberOfSegments int
tension float
리턴 void

DrawEllipse() 공개 메소드

public DrawEllipse ( Pen pen, Rectangle rect ) : void
pen System.Drawing.Pen
rect System.Drawing.Rectangle
리턴 void

DrawEllipse() 공개 메소드

public DrawEllipse ( Pen pen, RectangleF rect ) : void
pen System.Drawing.Pen
rect System.Drawing.RectangleF
리턴 void

DrawEllipse() 공개 메소드

public DrawEllipse ( Pen pen, float x, float y, float width, float height ) : void
pen System.Drawing.Pen
x float
y float
width float
height float
리턴 void

DrawEllipse() 공개 메소드

public DrawEllipse ( Pen pen, int x, int y, int width, int height ) : void
pen System.Drawing.Pen
x int
y int
width int
height int
리턴 void

DrawIcon() 공개 메소드

public DrawIcon ( Icon icon, Rectangle targetRect ) : void
icon System.Drawing.Icon
targetRect System.Drawing.Rectangle
리턴 void

DrawIcon() 공개 메소드

public DrawIcon ( Icon icon, int x, int y ) : void
icon System.Drawing.Icon
x int
y int
리턴 void

DrawIconUnstretched() 공개 메소드

public DrawIconUnstretched ( Icon icon, Rectangle targetRect ) : void
icon System.Drawing.Icon
targetRect System.Drawing.Rectangle
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, Point point ) : void
image Image
point Point
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit ) : void
image Image
destPoints Point
srcRect System.Drawing.Rectangle
srcUnit GraphicsUnit
리턴 void

DrawImage() 공개 메소드

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

DrawImage() 공개 메소드

public DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, Graphics callback ) : void
image Image
destPoints Point
srcRect System.Drawing.Rectangle
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback System.Drawing.Graphics
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, Graphics callback, int callbackData ) : void
image Image
destPoints Point
srcRect System.Drawing.Rectangle
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback System.Drawing.Graphics
callbackData int
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, PointF point ) : void
image Image
point System.Drawing.PointF
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit ) : void
image Image
destPoints System.Drawing.PointF
srcRect System.Drawing.RectangleF
srcUnit GraphicsUnit
리턴 void

DrawImage() 공개 메소드

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

DrawImage() 공개 메소드

public DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, Graphics callback ) : void
image Image
destPoints System.Drawing.PointF
srcRect System.Drawing.RectangleF
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback System.Drawing.Graphics
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, Graphics callback, int callbackData ) : void
image Image
destPoints System.Drawing.PointF
srcRect System.Drawing.RectangleF
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback System.Drawing.Graphics
callbackData int
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, Rectangle rect ) : void
image Image
rect System.Drawing.Rectangle
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, Rectangle destRect, Rectangle srcRect, GraphicsUnit srcUnit ) : void
image Image
destRect System.Drawing.Rectangle
srcRect System.Drawing.Rectangle
srcUnit GraphicsUnit
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit ) : void
image Image
destRect System.Drawing.Rectangle
srcX float
srcY float
srcWidth float
srcHeight float
srcUnit GraphicsUnit
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs ) : void
image Image
destRect System.Drawing.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, Graphics callback ) : void
image Image
destRect System.Drawing.Rectangle
srcX float
srcY float
srcWidth float
srcHeight float
srcUnit GraphicsUnit
imageAttrs System.Drawing.Imaging.ImageAttributes
callback System.Drawing.Graphics
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, Graphics callback, IntPtr callbackData ) : void
image Image
destRect System.Drawing.Rectangle
srcX float
srcY float
srcWidth float
srcHeight float
srcUnit GraphicsUnit
imageAttrs System.Drawing.Imaging.ImageAttributes
callback System.Drawing.Graphics
callbackData System.IntPtr
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit ) : void
image Image
destRect System.Drawing.Rectangle
srcX int
srcY int
srcWidth int
srcHeight int
srcUnit GraphicsUnit
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
image Image
destRect System.Drawing.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, Graphics callback ) : void
image Image
destRect System.Drawing.Rectangle
srcX int
srcY int
srcWidth int
srcHeight int
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback System.Drawing.Graphics
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, Graphics callback, IntPtr callbackData ) : void
image Image
destRect System.Drawing.Rectangle
srcX int
srcY int
srcWidth int
srcHeight int
srcUnit GraphicsUnit
imageAttrs System.Drawing.Imaging.ImageAttributes
callback System.Drawing.Graphics
callbackData System.IntPtr
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, RectangleF rect ) : void
image Image
rect System.Drawing.RectangleF
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, RectangleF destRect, RectangleF srcRect, GraphicsUnit srcUnit ) : void
image Image
destRect System.Drawing.RectangleF
srcRect System.Drawing.RectangleF
srcUnit GraphicsUnit
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, float x, float y ) : void
image Image
x float
y float
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, float x, float y, RectangleF srcRect, GraphicsUnit srcUnit ) : void
image Image
x float
y float
srcRect System.Drawing.RectangleF
srcUnit GraphicsUnit
리턴 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() 공개 메소드

public DrawImage ( Image image, int x, int y ) : void
image Image
x int
y int
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, int x, int y, Rectangle srcRect, GraphicsUnit srcUnit ) : void
image Image
x int
y int
srcRect System.Drawing.Rectangle
srcUnit GraphicsUnit
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, int x, int y, int width, int height ) : void
image Image
x int
y int
width int
height int
리턴 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 System.Drawing.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 System.Drawing.Rectangle
리턴 void

DrawLine() 공개 메소드

public DrawLine ( Pen pen, Point pt1, Point pt2 ) : void
pen System.Drawing.Pen
pt1 Point
pt2 Point
리턴 void

DrawLine() 공개 메소드

public DrawLine ( Pen pen, PointF pt1, PointF pt2 ) : void
pen System.Drawing.Pen
pt1 System.Drawing.PointF
pt2 System.Drawing.PointF
리턴 void

DrawLine() 공개 메소드

public DrawLine ( Pen pen, float x1, float y1, float x2, float y2 ) : void
pen System.Drawing.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 System.Drawing.Pen
x1 int
y1 int
x2 int
y2 int
리턴 void

DrawLines() 공개 메소드

public DrawLines ( Pen pen, Point points ) : void
pen System.Drawing.Pen
points Point
리턴 void

DrawLines() 공개 메소드

public DrawLines ( Pen pen, PointF points ) : void
pen System.Drawing.Pen
points System.Drawing.PointF
리턴 void

DrawPath() 공개 메소드

public DrawPath ( Pen pen, GraphicsPath path ) : void
pen System.Drawing.Pen
path System.Drawing.Drawing2D.GraphicsPath
리턴 void

DrawPie() 공개 메소드

public DrawPie ( Pen pen, Rectangle rect, float startAngle, float sweepAngle ) : void
pen System.Drawing.Pen
rect System.Drawing.Rectangle
startAngle float
sweepAngle float
리턴 void

DrawPie() 공개 메소드

public DrawPie ( Pen pen, RectangleF rect, float startAngle, float sweepAngle ) : void
pen System.Drawing.Pen
rect System.Drawing.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 System.Drawing.Pen
x float
y float
width float
height float
startAngle float
sweepAngle float
리턴 void

DrawPie() 공개 메소드

public DrawPie ( Pen pen, int x, int y, int width, int height, int startAngle, int sweepAngle ) : void
pen System.Drawing.Pen
x int
y int
width int
height int
startAngle int
sweepAngle int
리턴 void

DrawPolygon() 공개 메소드

public DrawPolygon ( Pen pen, Point points ) : void
pen System.Drawing.Pen
points Point
리턴 void

DrawPolygon() 공개 메소드

public DrawPolygon ( Pen pen, PointF points ) : void
pen System.Drawing.Pen
points System.Drawing.PointF
리턴 void

DrawRectangle() 공개 메소드

public DrawRectangle ( Pen pen, Rectangle rect ) : void
pen System.Drawing.Pen
rect System.Drawing.Rectangle
리턴 void

DrawRectangle() 공개 메소드

public DrawRectangle ( Pen pen, float x, float y, float width, float height ) : void
pen System.Drawing.Pen
x float
y float
width float
height float
리턴 void

DrawRectangle() 공개 메소드

public DrawRectangle ( Pen pen, int x, int y, int width, int height ) : void
pen System.Drawing.Pen
x int
y int
width int
height int
리턴 void

DrawRectangles() 공개 메소드

public DrawRectangles ( Pen pen, Rectangle rects ) : void
pen System.Drawing.Pen
rects System.Drawing.Rectangle
리턴 void

DrawRectangles() 공개 메소드

public DrawRectangles ( Pen pen, RectangleF rects ) : void
pen System.Drawing.Pen
rects System.Drawing.RectangleF
리턴 void

DrawString() 공개 메소드

public DrawString ( string s, Font font, Brush brush, PointF point ) : void
s string
font System.Drawing.Font
brush System.Drawing.Brush
point System.Drawing.PointF
리턴 void

DrawString() 공개 메소드

public DrawString ( string s, Font font, Brush brush, PointF point, StringFormat format ) : void
s string
font System.Drawing.Font
brush System.Drawing.Brush
point System.Drawing.PointF
format System.Drawing.StringFormat
리턴 void

DrawString() 공개 메소드

public DrawString ( string s, Font font, Brush brush, RectangleF layoutRectangle ) : void
s string
font System.Drawing.Font
brush System.Drawing.Brush
layoutRectangle System.Drawing.RectangleF
리턴 void

DrawString() 공개 메소드

public DrawString ( string s, Font font, Brush brush, RectangleF layoutRectangle, StringFormat format ) : void
s string
font System.Drawing.Font
brush System.Drawing.Brush
layoutRectangle System.Drawing.RectangleF
format System.Drawing.StringFormat
리턴 void

DrawString() 공개 메소드

public DrawString ( string s, Font font, Brush brush, float x, float y ) : void
s string
font System.Drawing.Font
brush System.Drawing.Brush
x float
y float
리턴 void

DrawString() 공개 메소드

public DrawString ( string s, Font font, Brush brush, float x, float y, StringFormat format ) : void
s string
font System.Drawing.Font
brush System.Drawing.Brush
x float
y float
format System.Drawing.StringFormat
리턴 void

EndContainer() 공개 메소드

public EndContainer ( GraphicsContainer container ) : void
container GraphicsContainer
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Point destPoint, Graphics callback ) : void
metafile System.Drawing.Imaging.Metafile
destPoint Point
callback System.Drawing.Graphics
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Point destPoint, Graphics callback, IntPtr callbackData ) : void
metafile System.Drawing.Imaging.Metafile
destPoint Point
callback System.Drawing.Graphics
callbackData System.IntPtr
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Point destPoint, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
metafile System.Drawing.Imaging.Metafile
destPoint Point
callback System.Drawing.Graphics
callbackData System.IntPtr
imageAttr System.Drawing.Imaging.ImageAttributes
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Point destPoint, Rectangle srcRect, GraphicsUnit srcUnit, Graphics callback ) : void
metafile System.Drawing.Imaging.Metafile
destPoint Point
srcRect System.Drawing.Rectangle
srcUnit GraphicsUnit
callback System.Drawing.Graphics
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Point destPoint, Rectangle srcRect, GraphicsUnit srcUnit, Graphics callback, IntPtr callbackData ) : void
metafile System.Drawing.Imaging.Metafile
destPoint Point
srcRect System.Drawing.Rectangle
srcUnit GraphicsUnit
callback System.Drawing.Graphics
callbackData System.IntPtr
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Point destPoint, Rectangle srcRect, GraphicsUnit unit, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
metafile System.Drawing.Imaging.Metafile
destPoint Point
srcRect System.Drawing.Rectangle
unit GraphicsUnit
callback System.Drawing.Graphics
callbackData System.IntPtr
imageAttr System.Drawing.Imaging.ImageAttributes
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, PointF destPoint, Graphics callback ) : void
metafile System.Drawing.Imaging.Metafile
destPoint System.Drawing.PointF
callback System.Drawing.Graphics
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, PointF destPoint, Graphics callback, IntPtr callbackData ) : void
metafile System.Drawing.Imaging.Metafile
destPoint System.Drawing.PointF
callback System.Drawing.Graphics
callbackData System.IntPtr
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, PointF destPoint, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
metafile System.Drawing.Imaging.Metafile
destPoint System.Drawing.PointF
callback System.Drawing.Graphics
callbackData System.IntPtr
imageAttr System.Drawing.Imaging.ImageAttributes
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, PointF destPoint, RectangleF srcRect, GraphicsUnit srcUnit, Graphics callback ) : void
metafile System.Drawing.Imaging.Metafile
destPoint System.Drawing.PointF
srcRect System.Drawing.RectangleF
srcUnit GraphicsUnit
callback System.Drawing.Graphics
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, PointF destPoint, RectangleF srcRect, GraphicsUnit srcUnit, Graphics callback, IntPtr callbackData ) : void
metafile System.Drawing.Imaging.Metafile
destPoint System.Drawing.PointF
srcRect System.Drawing.RectangleF
srcUnit GraphicsUnit
callback System.Drawing.Graphics
callbackData System.IntPtr
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, PointF destPoint, RectangleF srcRect, GraphicsUnit unit, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
metafile System.Drawing.Imaging.Metafile
destPoint System.Drawing.PointF
srcRect System.Drawing.RectangleF
unit GraphicsUnit
callback System.Drawing.Graphics
callbackData System.IntPtr
imageAttr System.Drawing.Imaging.ImageAttributes
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Rectangle destRect, Graphics callback ) : void
metafile System.Drawing.Imaging.Metafile
destRect System.Drawing.Rectangle
callback System.Drawing.Graphics
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Rectangle destRect, Graphics callback, IntPtr callbackData ) : void
metafile System.Drawing.Imaging.Metafile
destRect System.Drawing.Rectangle
callback System.Drawing.Graphics
callbackData System.IntPtr
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Rectangle destRect, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
metafile System.Drawing.Imaging.Metafile
destRect System.Drawing.Rectangle
callback System.Drawing.Graphics
callbackData System.IntPtr
imageAttr System.Drawing.Imaging.ImageAttributes
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Rectangle destRect, Rectangle srcRect, GraphicsUnit srcUnit, Graphics callback ) : void
metafile System.Drawing.Imaging.Metafile
destRect System.Drawing.Rectangle
srcRect System.Drawing.Rectangle
srcUnit GraphicsUnit
callback System.Drawing.Graphics
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Rectangle destRect, Rectangle srcRect, GraphicsUnit srcUnit, Graphics callback, IntPtr callbackData ) : void
metafile System.Drawing.Imaging.Metafile
destRect System.Drawing.Rectangle
srcRect System.Drawing.Rectangle
srcUnit GraphicsUnit
callback System.Drawing.Graphics
callbackData System.IntPtr
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, Rectangle destRect, Rectangle srcRect, GraphicsUnit unit, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
metafile System.Drawing.Imaging.Metafile
destRect System.Drawing.Rectangle
srcRect System.Drawing.Rectangle
unit GraphicsUnit
callback System.Drawing.Graphics
callbackData System.IntPtr
imageAttr System.Drawing.Imaging.ImageAttributes
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, RectangleF destRect, Graphics callback ) : void
metafile System.Drawing.Imaging.Metafile
destRect System.Drawing.RectangleF
callback System.Drawing.Graphics
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, RectangleF destRect, Graphics callback, IntPtr callbackData ) : void
metafile System.Drawing.Imaging.Metafile
destRect System.Drawing.RectangleF
callback System.Drawing.Graphics
callbackData System.IntPtr
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, RectangleF destRect, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
metafile System.Drawing.Imaging.Metafile
destRect System.Drawing.RectangleF
callback System.Drawing.Graphics
callbackData System.IntPtr
imageAttr System.Drawing.Imaging.ImageAttributes
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, RectangleF destRect, RectangleF srcRect, GraphicsUnit srcUnit, Graphics callback ) : void
metafile System.Drawing.Imaging.Metafile
destRect System.Drawing.RectangleF
srcRect System.Drawing.RectangleF
srcUnit GraphicsUnit
callback System.Drawing.Graphics
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, RectangleF destRect, RectangleF srcRect, GraphicsUnit srcUnit, Graphics callback, IntPtr callbackData ) : void
metafile System.Drawing.Imaging.Metafile
destRect System.Drawing.RectangleF
srcRect System.Drawing.RectangleF
srcUnit GraphicsUnit
callback System.Drawing.Graphics
callbackData System.IntPtr
리턴 void

EnumerateMetafile() 공개 메소드

public EnumerateMetafile ( System.Drawing.Imaging.Metafile metafile, RectangleF destRect, RectangleF srcRect, GraphicsUnit unit, Graphics callback, IntPtr callbackData, ImageAttributes imageAttr ) : void
metafile System.Drawing.Imaging.Metafile
destRect System.Drawing.RectangleF
srcRect System.Drawing.RectangleF
unit GraphicsUnit
callback System.Drawing.Graphics
callbackData System.IntPtr
imageAttr System.Drawing.Imaging.ImageAttributes
리턴 void

ExcludeClip() 공개 메소드

public ExcludeClip ( Rectangle rect ) : void
rect System.Drawing.Rectangle
리턴 void

ExcludeClip() 공개 메소드

public ExcludeClip ( Region region ) : void
region System.Drawing.Region
리턴 void

FillClosedCurve() 공개 메소드

public FillClosedCurve ( Brush brush, Point points ) : void
brush System.Drawing.Brush
points Point
리턴 void

FillClosedCurve() 공개 메소드

public FillClosedCurve ( Brush brush, Point points, FillMode fillmode ) : void
brush System.Drawing.Brush
points Point
fillmode FillMode
리턴 void

FillClosedCurve() 공개 메소드

public FillClosedCurve ( Brush brush, Point points, FillMode fillmode, float tension ) : void
brush System.Drawing.Brush
points Point
fillmode FillMode
tension float
리턴 void

FillClosedCurve() 공개 메소드

public FillClosedCurve ( Brush brush, PointF points ) : void
brush System.Drawing.Brush
points System.Drawing.PointF
리턴 void

FillClosedCurve() 공개 메소드

public FillClosedCurve ( Brush brush, PointF points, FillMode fillmode ) : void
brush System.Drawing.Brush
points System.Drawing.PointF
fillmode FillMode
리턴 void

FillClosedCurve() 공개 메소드

public FillClosedCurve ( Brush brush, PointF points, FillMode fillmode, float tension ) : void
brush System.Drawing.Brush
points System.Drawing.PointF
fillmode FillMode
tension float
리턴 void

FillEllipse() 공개 메소드

public FillEllipse ( Brush brush, Rectangle rect ) : void
brush System.Drawing.Brush
rect System.Drawing.Rectangle
리턴 void

FillEllipse() 공개 메소드

public FillEllipse ( Brush brush, RectangleF rect ) : void
brush System.Drawing.Brush
rect System.Drawing.RectangleF
리턴 void

FillEllipse() 공개 메소드

public FillEllipse ( Brush brush, float x, float y, float width, float height ) : void
brush System.Drawing.Brush
x float
y float
width float
height float
리턴 void

FillEllipse() 공개 메소드

public FillEllipse ( Brush brush, int x, int y, int width, int height ) : void
brush System.Drawing.Brush
x int
y int
width int
height int
리턴 void

FillPath() 공개 메소드

public FillPath ( Brush brush, GraphicsPath path ) : void
brush System.Drawing.Brush
path System.Drawing.Drawing2D.GraphicsPath
리턴 void

FillPie() 공개 메소드

public FillPie ( Brush brush, Rectangle rect, float startAngle, float sweepAngle ) : void
brush System.Drawing.Brush
rect System.Drawing.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 System.Drawing.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 System.Drawing.Brush
x int
y int
width int
height int
startAngle int
sweepAngle int
리턴 void

FillPolygon() 공개 메소드

public FillPolygon ( Brush brush, Point points ) : void
brush System.Drawing.Brush
points Point
리턴 void

FillPolygon() 공개 메소드

public FillPolygon ( Brush brush, Point points, FillMode fillMode ) : void
brush System.Drawing.Brush
points Point
fillMode FillMode
리턴 void

FillPolygon() 공개 메소드

public FillPolygon ( Brush brush, PointF points ) : void
brush System.Drawing.Brush
points System.Drawing.PointF
리턴 void

FillPolygon() 공개 메소드

public FillPolygon ( Brush brush, PointF points, FillMode fillMode ) : void
brush System.Drawing.Brush
points System.Drawing.PointF
fillMode FillMode
리턴 void

FillRectangle() 공개 메소드

public FillRectangle ( Brush brush, Rectangle rect ) : void
brush System.Drawing.Brush
rect System.Drawing.Rectangle
리턴 void

FillRectangle() 공개 메소드

public FillRectangle ( Brush brush, RectangleF rect ) : void
brush System.Drawing.Brush
rect System.Drawing.RectangleF
리턴 void

FillRectangle() 공개 메소드

public FillRectangle ( Brush brush, float x, float y, float width, float height ) : void
brush System.Drawing.Brush
x float
y float
width float
height float
리턴 void

FillRectangle() 공개 메소드

public FillRectangle ( Brush brush, int x, int y, int width, int height ) : void
brush System.Drawing.Brush
x int
y int
width int
height int
리턴 void

FillRectangles() 공개 메소드

public FillRectangles ( Brush brush, Rectangle rects ) : void
brush System.Drawing.Brush
rects System.Drawing.Rectangle
리턴 void

FillRectangles() 공개 메소드

public FillRectangles ( Brush brush, RectangleF rects ) : void
brush System.Drawing.Brush
rects System.Drawing.RectangleF
리턴 void

FillRegion() 공개 메소드

public FillRegion ( Brush brush, Region region ) : void
brush System.Drawing.Brush
region System.Drawing.Region
리턴 void

Flush() 공개 메소드

public Flush ( ) : void
리턴 void

Flush() 공개 메소드

public Flush ( FlushIntention intention ) : void
intention FlushIntention
리턴 void

GDIGraphics() 공개 메소드

public GDIGraphics ( Graphics graphics ) : System
graphics System.Drawing.Graphics
리턴 System

GetContextInfo() 공개 메소드

public GetContextInfo ( ) : object
리턴 object

GetHdc() 공개 메소드

public GetHdc ( ) : IntPtr
리턴 System.IntPtr

GetNearestColor() 공개 메소드

public GetNearestColor ( Color color ) : Color
color Color
리턴 Color

IntersectClip() 공개 메소드

public IntersectClip ( Rectangle rect ) : void
rect System.Drawing.Rectangle
리턴 void

IntersectClip() 공개 메소드

public IntersectClip ( RectangleF rect ) : void
rect System.Drawing.RectangleF
리턴 void

IntersectClip() 공개 메소드

public IntersectClip ( Region region ) : void
region System.Drawing.Region
리턴 void

IsVisible() 공개 메소드

public IsVisible ( Point point ) : bool
point Point
리턴 bool

IsVisible() 공개 메소드

public IsVisible ( PointF point ) : bool
point System.Drawing.PointF
리턴 bool

IsVisible() 공개 메소드

public IsVisible ( Rectangle rect ) : bool
rect System.Drawing.Rectangle
리턴 bool

IsVisible() 공개 메소드

public IsVisible ( RectangleF rect ) : bool
rect System.Drawing.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 ) : System.Drawing.Region[]
text string
font System.Drawing.Font
layoutRect System.Drawing.RectangleF
stringFormat System.Drawing.StringFormat
리턴 System.Drawing.Region[]

MeasureString() 공개 메소드

public MeasureString ( string text, Font font ) : SizeF
text string
font System.Drawing.Font
리턴 System.Drawing.SizeF

MeasureString() 공개 메소드

public MeasureString ( string text, Font font, PointF origin, StringFormat stringFormat ) : SizeF
text string
font System.Drawing.Font
origin System.Drawing.PointF
stringFormat System.Drawing.StringFormat
리턴 System.Drawing.SizeF

MeasureString() 공개 메소드

public MeasureString ( string text, Font font, SizeF layoutArea ) : SizeF
text string
font System.Drawing.Font
layoutArea System.Drawing.SizeF
리턴 System.Drawing.SizeF

MeasureString() 공개 메소드

public MeasureString ( string text, Font font, SizeF layoutArea, StringFormat stringFormat ) : SizeF
text string
font System.Drawing.Font
layoutArea System.Drawing.SizeF
stringFormat System.Drawing.StringFormat
리턴 System.Drawing.SizeF

MeasureString() 공개 메소드

public MeasureString ( string text, Font font, SizeF layoutArea, StringFormat stringFormat, int &charactersFitted, int &linesFilled ) : SizeF
text string
font System.Drawing.Font
layoutArea System.Drawing.SizeF
stringFormat System.Drawing.StringFormat
charactersFitted int
linesFilled int
리턴 System.Drawing.SizeF

MeasureString() 공개 메소드

public MeasureString ( string text, Font font, int width ) : SizeF
text string
font System.Drawing.Font
width int
리턴 System.Drawing.SizeF

MeasureString() 공개 메소드

public MeasureString ( string text, Font font, int width, StringFormat format ) : SizeF
text string
font System.Drawing.Font
width int
format System.Drawing.StringFormat
리턴 System.Drawing.SizeF

MultiplyTransform() 공개 메소드

public MultiplyTransform ( Matrix matrix ) : void
matrix Matrix
리턴 void

MultiplyTransform() 공개 메소드

public MultiplyTransform ( Matrix matrix, MatrixOrder order ) : void
matrix Matrix
order MatrixOrder
리턴 void

ReleaseHdc() 공개 메소드

public ReleaseHdc ( ) : void
리턴 void

ReleaseHdc() 공개 메소드

public ReleaseHdc ( IntPtr hdc ) : void
hdc System.IntPtr
리턴 void

ReleaseHdcInternal() 공개 메소드

public ReleaseHdcInternal ( IntPtr hdc ) : void
hdc System.IntPtr
리턴 void

ResetClip() 공개 메소드

public ResetClip ( ) : void
리턴 void

ResetTransform() 공개 메소드

public ResetTransform ( ) : void
리턴 void

Restore() 공개 메소드

public Restore ( System.Drawing.Drawing2D.GraphicsState gstate ) : void
gstate System.Drawing.Drawing2D.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 ( ) : System.Drawing.Drawing2D.GraphicsState
리턴 System.Drawing.Drawing2D.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 System.Drawing.Graphics
리턴 void

SetClip() 공개 메소드

public SetClip ( Graphics g, CombineMode combineMode ) : void
g System.Drawing.Graphics
combineMode CombineMode
리턴 void

SetClip() 공개 메소드

public SetClip ( GraphicsPath path ) : void
path System.Drawing.Drawing2D.GraphicsPath
리턴 void

SetClip() 공개 메소드

public SetClip ( GraphicsPath path, CombineMode combineMode ) : void
path System.Drawing.Drawing2D.GraphicsPath
combineMode CombineMode
리턴 void

SetClip() 공개 메소드

public SetClip ( Rectangle rect ) : void
rect System.Drawing.Rectangle
리턴 void

SetClip() 공개 메소드

public SetClip ( Rectangle rect, CombineMode combineMode ) : void
rect System.Drawing.Rectangle
combineMode CombineMode
리턴 void

SetClip() 공개 메소드

public SetClip ( RectangleF rect ) : void
rect System.Drawing.RectangleF
리턴 void

SetClip() 공개 메소드

public SetClip ( RectangleF rect, CombineMode combineMode ) : void
rect System.Drawing.RectangleF
combineMode CombineMode
리턴 void

SetClip() 공개 메소드

public SetClip ( Region region, CombineMode combineMode ) : void
region System.Drawing.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 System.Drawing.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 dx, float dy ) : void
dx float
dy float
리턴 void

TranslateTransform() 공개 메소드

public TranslateTransform ( float dx, float dy, MatrixOrder order ) : void
dx float
dy float
order MatrixOrder
리턴 void