C# 클래스 NPlot.Marker

Encapsulates functionality relating to markers used by the PointPlot class.
파일 보기 프로젝트 열기: mono/nplot-gtk 1 사용 예제들

공개 메소드들

메소드 설명
Draw ( Graphics g, int x, int y ) : void

Draws the marker at the given position

Marker ( ) : System

Default constructor.

Marker ( MarkerType markertype ) : System

Constructor

Marker ( MarkerType markertype, int size ) : System

Constructor

Marker ( MarkerType markertype, int size, Color color ) : System

Constructor

Marker ( MarkerType markertype, int size, Pen pen ) : System

Constructor

Marker ( MarkerType markertype, int size, Pen pen, bool fill ) : System

Constructor

메소드 상세

Draw() 공개 메소드

Draws the marker at the given position
public Draw ( Graphics g, int x, int y ) : void
g System.Drawing.Graphics The graphics surface on which to draw.
x int The [physical] x position to draw the marker.
y int The [physical] y position to draw the marker.
리턴 void

Marker() 공개 메소드

Default constructor.
public Marker ( ) : System
리턴 System

Marker() 공개 메소드

Constructor
public Marker ( MarkerType markertype ) : System
markertype MarkerType The marker type.
리턴 System

Marker() 공개 메소드

Constructor
public Marker ( MarkerType markertype, int size ) : System
markertype MarkerType The marker type.
size int The marker size.
리턴 System

Marker() 공개 메소드

Constructor
public Marker ( MarkerType markertype, int size, Color color ) : System
markertype MarkerType The marker type.
size int The marker size.
color Color The marker color.
리턴 System

Marker() 공개 메소드

Constructor
public Marker ( MarkerType markertype, int size, Pen pen ) : System
markertype MarkerType The marker type.
size int The marker size.
pen System.Drawing.Pen The marker Pen.
리턴 System

Marker() 공개 메소드

Constructor
public Marker ( MarkerType markertype, int size, Pen pen, bool fill ) : System
markertype MarkerType The marker type.
size int The marker size.
pen System.Drawing.Pen The marker Pen.
fill bool The fill flag.
리턴 System