ArrowLine

View as Markdown

Definition

Represents an interface that exposes information regarding an Arrow Line IDrawingTool.

Methods and Properties

PropertyDescription
StartAnchorAn IDrawingTool’s ChartAnchor representing the starting point of the drawing object
EndAnchorAn IDrawingTool’s ChartAnchor representing the end point of the drawing object
StrokeA Stroke object used to draw the object

Example

1// Draw an ArrowLine object
2ArrowLine myArrow = Draw.ArrowLine(this, "myArrowLine", 3, High[3], 1, High[1], Brushes.Blue, DashStyleHelper.DashDot, 3);
3
4// Disable the arrow's visibility
5myArrow.IsVisible = false;