CustomLineCap
Inheritance: java.lang.Object
public class CustomLineCap
Encapsulates a custom user-defined line cap.
Constructors
Constructor | Description |
---|---|
CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath) | Initializes a new instance of the CustomLineCap class with the specified outline and fill. |
CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, int baseCap) | Initializes a new instance of the CustomLineCap class from the specified existing LineCap enumeration with the specified outline and fill. |
CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, int baseCap, float baseInset) | Initializes a new instance of the CustomLineCap class from the specified existing LineCap enumeration with the specified outline, fill, and inset. |
Methods
Method | Description |
---|---|
equals(Object arg0) | |
getBaseCap() | Gets the LineCap enumeration on which this CustomLineCap is based. |
getBaseInset() | Gets the distance between the cap and the line. |
getClass() | |
getFillPath() | Gets the object that defines the fill for the custom cap. |
getStrokeCaps(int[] startCap, int[] endCap) | Gets the caps used to start and end lines that make up this custom cap. |
getStrokeJoin() | Gets the LineJoin enumeration that determines how lines that compose this CustomLineCap object are joined. |
getStrokePath() | Gets the object that defines the outline of the custom cap. |
getWidthScale() | Gets the amount by which to scale this CustomLineCap Class object with respect to the width of the System.Drawing.Pen object. |
hashCode() | |
notify() | |
notifyAll() | |
setBaseCap(int value) | Sets the LineCap enumeration on which this CustomLineCap is based. |
setBaseInset(float value) | Sets the distance between the cap and the line. |
setFillPath(GraphicsPath value) | Sets the object that defines the fill for the custom cap. |
setStrokeCaps(int startCap, int endCap) | Sets the caps used to start and end lines that make up this custom cap. |
setStrokeJoin(int value) | Sets the LineJoin enumeration that determines how lines that compose this CustomLineCap object are joined. |
setStrokePath(GraphicsPath value) | Sets the object that defines the outline of the custom cap. |
setWidthScale(float value) | Sets the amount by which to scale this CustomLineCap Class object with respect to the width of the System.Drawing.Pen object. |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath)
public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath)
Initializes a new instance of the CustomLineCap class with the specified outline and fill.
Parameters:
Parameter | Type | Description |
---|---|---|
fillPath | GraphicsPath | A GraphicsPath object that defines the fill for the custom cap. |
strokePath | GraphicsPath | A GraphicsPath object that defines the outline of the custom cap. |
CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, int baseCap)
public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, int baseCap)
Initializes a new instance of the CustomLineCap class from the specified existing LineCap enumeration with the specified outline and fill.
Parameters:
Parameter | Type | Description |
---|---|---|
fillPath | GraphicsPath | A GraphicsPath object that defines the fill for the custom cap. |
strokePath | GraphicsPath | A GraphicsPath object that defines the outline of the custom cap. |
baseCap | int | The line cap from which to create the custom cap. |
CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, int baseCap, float baseInset)
public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, int baseCap, float baseInset)
Initializes a new instance of the CustomLineCap class from the specified existing LineCap enumeration with the specified outline, fill, and inset.
Parameters:
Parameter | Type | Description |
---|---|---|
fillPath | GraphicsPath | A GraphicsPath object that defines the fill for the custom cap. |
strokePath | GraphicsPath | A GraphicsPath object that defines the outline of the custom cap. |
baseCap | int | The line cap from which to create the custom cap. |
baseInset | float | The distance between the cap and the line. |
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
getBaseCap()
public int getBaseCap()
Gets the LineCap enumeration on which this CustomLineCap is based.
Returns: int - The LineCap enumeration on which this CustomLineCap is based.
getBaseInset()
public float getBaseInset()
Gets the distance between the cap and the line.
Returns: float - The distance between the beginning of the cap and the end of the line.
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getFillPath()
public GraphicsPath getFillPath()
Gets the object that defines the fill for the custom cap.
Returns: GraphicsPath - The object that defines the fill for the custom cap.
getStrokeCaps(int[] startCap, int[] endCap)
public void getStrokeCaps(int[] startCap, int[] endCap)
Gets the caps used to start and end lines that make up this custom cap.
Parameters:
Parameter | Type | Description |
---|---|---|
startCap | int[] | The LineCap enumeration used at the beginning of a line within this cap. |
endCap | int[] | The LineCap enumeration used at the end of a line within this cap. |
getStrokeJoin()
public int getStrokeJoin()
Gets the LineJoin enumeration that determines how lines that compose this CustomLineCap object are joined.
Returns: int - The LineJoin enumeration this CustomLineCap object uses to join lines.
getStrokePath()
public GraphicsPath getStrokePath()
Gets the object that defines the outline of the custom cap.
Returns: GraphicsPath - The object that defines the outline of the custom cap.
getWidthScale()
public float getWidthScale()
Gets the amount by which to scale this CustomLineCap Class object with respect to the width of the System.Drawing.Pen object.
Returns: float - The amount by which to scale the cap.
hashCode()
public native int hashCode()
Returns: int
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
setBaseCap(int value)
public void setBaseCap(int value)
Sets the LineCap enumeration on which this CustomLineCap is based.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int | The LineCap enumeration on which this CustomLineCap is based. |
setBaseInset(float value)
public void setBaseInset(float value)
Sets the distance between the cap and the line.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float | The distance between the beginning of the cap and the end of the line. |
setFillPath(GraphicsPath value)
public void setFillPath(GraphicsPath value)
Sets the object that defines the fill for the custom cap.
Parameters:
Parameter | Type | Description |
---|---|---|
value | GraphicsPath | The object that defines the fill for the custom cap. |
setStrokeCaps(int startCap, int endCap)
public void setStrokeCaps(int startCap, int endCap)
Sets the caps used to start and end lines that make up this custom cap.
Parameters:
Parameter | Type | Description |
---|---|---|
startCap | int | The LineCap enumeration used at the beginning of a line within this cap. |
endCap | int | The LineCap enumeration used at the end of a line within this cap. |
setStrokeJoin(int value)
public void setStrokeJoin(int value)
Sets the LineJoin enumeration that determines how lines that compose this CustomLineCap object are joined.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int | The LineJoin enumeration this CustomLineCap object uses to join lines. |
setStrokePath(GraphicsPath value)
public void setStrokePath(GraphicsPath value)
Sets the object that defines the outline of the custom cap.
Parameters:
Parameter | Type | Description |
---|---|---|
value | GraphicsPath | The object that defines the outline of the custom cap. |
setWidthScale(float value)
public void setWidthScale(float value)
Sets the amount by which to scale this CustomLineCap Class object with respect to the width of the System.Drawing.Pen object.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float | The amount by which to scale the cap. |
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |