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 1// Instantiate a HorizontalLine object2HorizontalLine myLine = Draw.HorizontalLine(this, "tag1", 1000, Brushes.Black);34// Set a new Stroke for the object5myLine.Stroke = new Stroke(Brushes.Green, DashStyleHelper.Dash, 5);