ReferencesCommonDrawingDraw.ExtendedLine()ExtendedLineAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding an Extended 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 dotted lime green Extended Line2ExtendedLine myLine = Draw.ExtendedLine(this, "tag1", 10, Close[10], 0, Close[0], Brushes.LimeGreen, DashStyleHelper.Dot, 2);34// Make the line a Global Drawing Object5myLine.IsGlobalDrawingTool = true;