C# Class NPlot.Marker

Encapsulates functionality relating to markers used by the PointPlot class.
Afficher le fichier Open project: mono/nplot-gtk Class Usage Examples

Méthodes publiques

Méthode Description
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

Method Details

Draw() public méthode

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.
Résultat void

Marker() public méthode

Default constructor.
public Marker ( ) : System
Résultat System

Marker() public méthode

Constructor
public Marker ( MarkerType markertype ) : System
markertype MarkerType The marker type.
Résultat System

Marker() public méthode

Constructor
public Marker ( MarkerType markertype, int size ) : System
markertype MarkerType The marker type.
size int The marker size.
Résultat System

Marker() public méthode

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.
Résultat System

Marker() public méthode

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.
Résultat System

Marker() public méthode

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.
Résultat System