ReferencesCommonDrawingDraw.ArrowLine()ArrowLineAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding an Arrow Line IDrawingTool. Methods and Properties PropertyDescriptionStartAnchorAn 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 Example 1// Draw an ArrowLine object2ArrowLine myArrow = Draw.ArrowLine(this, "myArrowLine", 3, High[3], 1, High[1], Brushes.Blue, DashStyleHelper.DashDot, 3);34// Disable the arrow's visibility5myArrow.IsVisible = false;