LineGraphicsPathSegment Class
A line segment in a graphics path.
Declaration
public class LineGraphicsPathSegment extends GraphicsPathSegment
Inherited Members
com.devexpress.system.JavaObject.clone()
com.devexpress.system.JavaObject.equals(java.lang.Object)
com.devexpress.system.JavaObject.hashCode()
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
JavaObject
GraphicsPathSegment
LineGraphicsPathSegment
Constructors
LineGraphicsPathSegment(float endPointX, float endPointY) Constructor
Initializes a new instance of the LineGraphicsPathSegment class with specified end point coordinates.
Declaration
public LineGraphicsPathSegment(float endPointX, float endPointY)
Parameters
| Name | Type | Description |
|---|---|---|
| endPointX | float | The X-coordinate of the end point of the line segment. |
| endPointY | float | The Y-coordinate of the end point of the line segment. |
LineGraphicsPathSegment(PointF endPoint) Constructor
Initializes a new instance of the LineGraphicsPathSegment class with the specified end point.
Declaration
public LineGraphicsPathSegment(PointF endPoint)
Parameters
| Name | Type | Description |
|---|---|---|
| endPoint | com.devexpress.system.drawing.PointF | The end point of the line segment. |