GraphicsPathSegment Class
The base class for all graphics path segments.
Declaration
public abstract class GraphicsPathSegment extends JavaObject implements ICloneable
Remarks
A graphics path consists of one or more connected segments that define the outline of a shape. Derived classes implement specific segment types, such as straight lines or Bézier curves.
Implements
com.devexpress.system.ICloneable
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
GraphicsPathSegment
Methods
deepClone() Method
Creates a deep copy of the current object.
Declaration
public GraphicsPathSegment deepClone()
Returns
| Type | Description |
|---|---|
GraphicsPathSegment |
A deep copy of the current object. |
getEndPoint() Method
Returns the end point of the path segment.
Declaration
public PointF getEndPoint()
Returns
| Type | Description |
|---|---|
| com.devexpress.system.drawing.PointF | The segment’s end point. |
objectClone() Method
Creates a copy of the current object.
Declaration
public Object objectClone()
Returns
| Type | Description |
|---|---|
| Object | A copy of the current object. |