ReferencesCommonDrawingDraw.VerticalLine()VerticalLineAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding a Vertical Line IDrawingTool. Methods and Properties ParameterDescriptionStartAnchorAn IDrawingTool’s ChartAnchor representing the starting point of the drawing objectEndAnchorAn IDrawingTool’s ChartAnchor representing the end point of the drawing objectStrokeA Stroke object used to draw the object Examples 1// Instantiate a VerticalLine object 2VerticalLine myLine = Draw.VerticalLine(this, "tag1", 10, Brushes.Black); 3 4// Change the object's Stroke 5myLine.Stroke = new Stroke(Brushes.BlanchedAlmond, DashStyleHelper.Dot, 5);