ReferencesCommonDrawingDraw.ArrowDown()ArrowDownAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding an Arrow Down IDrawingTool. Methods and Properties AnchorAn IDrawingTool’s ChartAnchor representing the point of the drawing objectAreaBrushA Brush object representing the fill color of the draw objectOutlineBrushA Brush object representing the color of the draw object’s outline Example 1// Instantiate an ArrowDown object2ArrowDown myArrow = Draw.ArrowDown(this, "tag1", true, Time[0], High[0] + (2 * TickSize), Brushes.Green);34// Set the outline color of the Arrow5myArrow.OutlineBrush = Brushes.Black;