ReferencesCommonDrawingDraw.TriangleDown()TriangleDownAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding a Triangle Down IDrawingTool. Methods and Properties ParameterDescriptionAnchorAn IDrawingTool’s ChartAnchor representing the point of the drawing objectAreaBrushA Brush class representing the fill color of the draw objectOutlineBrushA 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;