Skip to main content

DXGraphicsPathData Class

Graphics path data.

Declaration

public class DXGraphicsPathData extends JavaObject

Inherited Members

com.devexpress.system.JavaObject.clone()
com.devexpress.system.JavaObject.equals(java.lang.Object)
com.devexpress.system.JavaObject.hashCode()
com.devexpress.system.JavaObject.initFields()
com.devexpress.system.JavaObject.memberwiseClone()
com.devexpress.system.JavaObject.toString()
java.lang.Object.finalize()
java.lang.Object.getClass()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)

Inheritance

Object
com.devexpress.system.JavaObject
DXGraphicsPathData

Constructors

DXGraphicsPathData() Constructor

Initializes a new instance of the DXGraphicsPathData class.

Declaration

public DXGraphicsPathData()

DXGraphicsPathData(List<PointF> points, List<DXPathPointType> types, DXFillMode fillMode) Constructor

Initializes a new instance of the DXGraphicsPathData class with specified settings.

Declaration

public DXGraphicsPathData(List<PointF> points, List<DXPathPointType> types, DXFillMode fillMode)

Parameters

Name Type Description
points java.util.List<com.devexpress.system.drawing.PointF>

Path points.

types java.util.List<DXPathPointType>

Point types for path points.

fillMode DXFillMode

The fill mode for the path.

DXGraphicsPathData(List<PointF> points, List<DXPathPointType> types) Constructor

Initializes a new instance of the DXGraphicsPathData class with specified settings.

Declaration

public DXGraphicsPathData(List<PointF> points, List<DXPathPointType> types)

Parameters

Name Type Description
points java.util.List<com.devexpress.system.drawing.PointF>

Path points.

types java.util.List<DXPathPointType>

Point types for path points.

Methods

clone() Method

Creates a copy of this graphics path data.

Declaration

public DXGraphicsPathData clone()

Returns

Type Description
DXGraphicsPathData

The cloned DXGraphicsPathData object.

getBounds() Method

Returns the bounds of the path.

Declaration

public RectangleF getBounds()

Returns

Type Description
RectangleF

The bounds of the path.

getFillMode() Method

Returns the fill mode.

Declaration

public DXFillMode getFillMode()

Returns

Type Description
DXFillMode

The fill mode for the path.

getPathPoints() Method

Returns path points.

Declaration

public List<PointF> getPathPoints()

Returns

Type Description
java.util.List<com.devexpress.system.drawing.PointF>

Path points.

getPathTypes() Method

Returns path point types.

Declaration

public List<DXPathPointType> getPathTypes()

Returns

Type Description
java.util.List<DXPathPointType>

Path point types.