ReferencesCommonDrawingDraw.Square()SquareAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding a Square IDrawingTool. Methods and Properties ParameterDescriptionAnchorAn IDrawingTool’s ChartAnchor representing the point of the drawing objectOutlineBrushA Brush used for the outline of the squareAreaBrushA Brush object representing the fill color of the draw object Examples 1// Instantiate a Square object2Square mySquare = Draw.Square(this, "tag1", true, 0, Low[0] - TickSize, Brushes.Red);3 4// Change the object's OutlineBrush5mySquare.OutlineBrush = Brushes.Blue;