ArrowDown

View as Markdown

Definition

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

Methods and Properties

AnchorAn IDrawingTool’s ChartAnchor representing the point of the drawing object
AreaBrushA Brush object representing the fill color of the draw object
OutlineBrushA Brush object representing the color of the draw object’s outline

Example

1// Instantiate an ArrowDown object
2ArrowDown myArrow = Draw.ArrowDown(this, "tag1", true, Time[0], High[0] + (2 * TickSize), Brushes.Green);
3
4// Set the outline color of the Arrow
5myArrow.OutlineBrush = Brushes.Black;