TriangleDown

View as Markdown

Definition

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

Example

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