ReferencesCommonDrawingDraw.HorizontalLine()HorizontalLineAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding a Horizontal Line IDrawingTool. Methods and Properties PropertyDescriptionStartAnchorAn IDrawingTool’s ChartAnchor representing the starting point of the drawing objectStrokeA Stroke object used to draw the object Examples // Instantiate a HorizontalLine objectHorizontalLine myLine = Draw.HorizontalLine(this, "tag1", 1000, Brushes.Black);// Set a new Stroke for the objectmyLine.Stroke = new Stroke(Brushes.Green, DashStyleHelper.Dash, 5);