PathAnnotation Class
Serves as a base class for PDF path annotations, such as line, polyline, and polygon.
Declaration
public abstract class PathAnnotation extends MarkupAnnotation
Remarks
Refer to the following help topic for additional information: Drawing Annotations.
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
BaseAnnotation
MarkupAnnotation
PathAnnotation
Methods
getBorderStyle() Method
Returns the path annotation border style.
Declaration
public AnnotationBorderStyle getBorderStyle()
Returns
| Type | Description |
|---|---|
| AnnotationBorderStyle | The path annotation border style. |
getInteriorColor() Method
Returns the path annotation interior color.
Declaration
public PdfColor getInteriorColor()
Returns
| Type | Description |
|---|---|
| PdfColor | The path annotation interior color. |
getMeasure() Method
Returns the path annotation measure.
Declaration
public RectilinearMeasure getMeasure()
Returns
| Type | Description |
|---|---|
| RectilinearMeasure | The path annotation measure. |
getVertices() Method
Returns the path annotation vertices.
Declaration
public List<PointF> getVertices()
Returns
| Type | Description |
|---|---|
| java.util.List<com.devexpress.system.drawing.PointF> | The path annotation vertices. |
setBorderStyle(AnnotationBorderStyle value) Method
Sets the path annotation border style.
Declaration
public void setBorderStyle(AnnotationBorderStyle value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | AnnotationBorderStyle | The path annotation border style. |
setInteriorColor(PdfColor value) Method
Sets the path annotation interior color.
Declaration
public void setInteriorColor(PdfColor value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | PdfColor | The path annotation interior color. |
setMeasure(RectilinearMeasure value) Method
Sets the path annotation measure.
Declaration
public void setMeasure(RectilinearMeasure value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | RectilinearMeasure | The path annotation measure. |
setVertices(List<PointF> value) Method
Sets the path annotation vertices.
Declaration
public void setVertices(List<PointF> value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | java.util.List<com.devexpress.system.drawing.PointF> | The path annotation vertices. |