ExtendedLine

View as Markdown

Definition

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

Methods and Properties

ParameterDescription
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

Examples

1// Instantiate a dotted lime green Extended Line
2ExtendedLine myLine = Draw.ExtendedLine(this, "tag1", 10, Close[10], 0, Close[0], Brushes.LimeGreen, DashStyleHelper.Dot, 2);
3
4// Make the line a Global Drawing Object
5myLine.IsGlobalDrawingTool = true;