TriangleUp

View as Markdown

Definition

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

Methods and Properties

ParameterDescription
AnchorAn IDrawingTool’s ChartAnchor representing the point of the drawing object
AreaBrushA Brush class representing the fill color of the draw object
OutlineBrushA Brush class representing the outline color of the draw object

Examples

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