TriangleUp

<< Click to Display Table of Contents >>

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

TriangleUp

Previous page Return to chapter overview Next page

Definition

Represents an interface that exposes information regarding a Triangle Up 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

 

 

Examples

ns

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