WebPlanner Programmer's Guide

IGraphics.FillPolygon Method (Brush, Point[])

See Also
 


Fills the interior of a polygon defined by an array of points specified by Point structures.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

public abstract void FillPolygon (
    Brush brush,
    Point[] points
)

Visual Basic  Copy Code

Public MustOverride Sub FillPolygon ( _
    brush As Brush, _
    points() As Point _
)

 Parameters

brush
A .NET Brush object that determines the characteristics of the fill.
points
An array of .NET Point structures that represent the vertices of the polygon to fill.

 See Also