Bitmap.PlotSurface2D.Add C# (CSharp) Method

Add() public method

Adds a drawable object to the plot surface. If the object is an IPlot, the PlotSurface2D axes will also be updated.
public Add ( IDrawable p ) : void
p IDrawable The IDrawable object to add to the plot surface.
return void
            public void Add(IDrawable p)
            {
                ps_.Add(p);
            }

Same methods

PlotSurface2D::Add ( IDrawable p, int zOrder ) : void