ArrowDown

<< Click to Display Table of Contents >>

Navigation:  NinjaScript > Language Reference > Common > Drawing > Draw.ArrowDown() >

ArrowDown

Previous page Return to chapter overview Next page

Definition

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

 

Methods and Properties

Anchor

An IDrawingTool's ChartAnchor representing the point of the drawing object

AreaBrush

A Brush object representing the fill color of the draw object

OutlineBrush

A Brush object representing the color of the draw object's outline

 

 

Example

ns

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