WmfPolyPolygon

Inheritance: java.lang.Object, com.aspose.imaging.fileformats.emf.MetaObject, com.aspose.imaging.fileformats.wmf.objects.WmfObject

public class WmfPolyPolygon extends WmfObject

The PolyPolygon Object defines a series of closed polygons.

Constructors

ConstructorDescription
WmfPolyPolygon()

Methods

MethodDescription
getNumberOfPolygons()Gets or sets the number of polygons.
setNumberOfPolygons(int value)Gets or sets the number of polygons.
getAPointsPerPolygon()Gets or sets a points per polygon.
setAPointsPerPolygon(int[] value)Gets or sets a points per polygon.
getAPoints()Gets or sets a points.
setAPoints(Point[][] value)Gets or sets a points.

WmfPolyPolygon()

public WmfPolyPolygon()

getNumberOfPolygons()

public int getNumberOfPolygons()

Gets or sets the number of polygons. The number of polygons in the object.

Value: The number of polygons.

Returns: int

setNumberOfPolygons(int value)

public void setNumberOfPolygons(int value)

Gets or sets the number of polygons. The number of polygons in the object.

Value: The number of polygons.

Parameters:

ParameterTypeDescription
valueint

getAPointsPerPolygon()

public int[] getAPointsPerPolygon()

Gets or sets a points per polygon.

Value: The number of points for each polygon in the object.

Returns: int[]

setAPointsPerPolygon(int[] value)

public void setAPointsPerPolygon(int[] value)

Gets or sets a points per polygon.

Value: The number of points for each polygon in the object.

Parameters:

ParameterTypeDescription
valueint[]

getAPoints()

public Point[][] getAPoints()

Gets or sets a points.

Value: a points.

Returns: com.aspose.imaging.Point[][]

setAPoints(Point[][] value)

public void setAPoints(Point[][] value)

Gets or sets a points.

Value: a points.

Parameters:

ParameterTypeDescription
valuePoint[]