Fills a polygon.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public override void FillPolygon(
	int[] xpoints,
	int[] ypoints,
	int npoints
)
Visual Basic (Declaration)
Public Overrides Sub FillPolygon ( _
	xpoints As Integer(), _
	ypoints As Integer(), _
	npoints As Integer _
)
Visual C++
public:
virtual void FillPolygon(
	array<int>^ xpoints, 
	array<int>^ ypoints, 
	int npoints
) override

Parameters

xpoints
Type: array< System..::.Int32 >[]()[]
An int array which contains the abscissae of the points which define the polygon.
ypoints
Type: array< System..::.Int32 >[]()[]
An int array which contains the ordinates of the points which define the polygon.
npoints
Type: System..::.Int32
An int which specifies the number of pointsto add to the graphics path.

See Also