ReferencesCommonDrawingDraw.Polygon()PolygonAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding a Polygon IDrawingTool. Methods and Properties ParameterDescriptionStartAnchorAn IDrawingTool’s ChartAnchor representing the starting point of the drawing objectEndAnchorAn IDrawingTool’s ChartAnchor representing the end point of the drawing objectStrokeA Stroke object used to draw the object Examples 1// Instantiate a Polygon object2Polygon myPolygon = Draw.Polygon(this, "tag1", false, 20, 194, 10, 184, 13, 176, 25, 182);34// Set a new area brush for the object5myPolygon.AreaBrush = Brushes.Green;