ReferencesCommonDrawingDraw.ArrowUp()ArrowUpAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding an Arrow Up IDrawingTool. Methods and Properties PropertyDescriptionAnchorAn 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 object2ArrowUp myArrow = Draw.ArrowUp(this, "tag1", true, Time[0], Low[0] - (2 * TickSize), Brushes.Green);34// Set the outline color of the Arrow5myArrow.OutlineBrush = Brushes.Black;