Draw() public abstract method

public abstract Draw ( Graphics g, float zoom, PointF offset, PointF zoomPosition ) : void
g System.Drawing.Graphics
zoom float
offset System.Drawing.PointF
zoomPosition System.Drawing.PointF
return void
コード例 #1
0
		private void DrawPrimitive(Primitive primitive, Graphics graphics, float zoom, PointF offset)
		{
			primitive.Draw(graphics, zoom, offset, _zoomLocation, AutoScrollPosition);
		}
コード例 #2
0
 private void DrawPrimitive(Primitive primitive, Graphics graphics, float zoom, PointF offset)
 {
     primitive.Draw(graphics, zoom, offset, _zoomLocation, AutoScrollPosition);
 }