TriangleDown

<< Click to Display Table of Contents >>

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

TriangleDown

Previous page Return to chapter overview Next page

Definition

Represents an interface that exposes information regarding a Triangle Down IDrawingTool.

 

Methods and Properties

Anchor

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

AreaBrush

A Brush class representing the fill color of the draw object

OutlineBrush

A Brush class representing the outline color of the draw object

 

 

 

Example

ns

// Instantiate a TriangleDown object
TriangleDown myTri = Draw.TriangleDown(this, "tag1", true, 0, Low[0] - TickSize, Brushes.Red);            
 
// Change the object's AreaBrush
myTri.AreaBrush = Brushes.Beige;