Svg.Pathing.SvgLineSegment.AddToPath C# (CSharp) Method

AddToPath() public method

public AddToPath ( System graphicsPath ) : void
graphicsPath System
return void
        public override void AddToPath(System.Drawing.Drawing2D.GraphicsPath graphicsPath)
        {
            graphicsPath.AddLine(this.Start, this.End);
        }