PolygonPlot.ShowOutlines

Prototypes

void ShowOutlines( <boolean bShow> )

Parameters

boolean bShow
If bShow is true, line segments are drawn to connect each X, Y coordinate pair. If bShow is false, line segments are not drawn. Calling this method without a parameter is equivalent to calling it with bShow equal to true.

Remarks

This method controls whether line segments are drawn to connect each X, Y coordinate pair.

Example
x  = { 0, 1, 1, 0, 1.5, 2, 1 };
y  = { 0, 0, 1, 1, 1,   2, 2 };
id = { 1, 1, 1, 1, 2,   2, 2 };
declare PolygonPlot plot = PolygonPlot.Create( "Shapes", x, y, id );
plot.ShowOutlines( false );