CURELab.SignLanguage.Debugger.View.ChartView.DrawSigner C# (CSharp) Method

DrawSigner() public method

draw signer
public DrawSigner ( int split, double min, double max ) : void
split int
min double
max double
return void
        public void DrawSigner(int split, double min, double max)
        {
            if (lastSigner != null)
            {
                lastSigner.Remove();
            }
            lastSigner = AddSplitLine(split, 1, min, max, SegmentType.NotSegment, Colors.Black);
        }