com.aspose.slides
Class LineFormatDataEx

java.lang.Object
  extended by com.aspose.slides.LineFormatDataEx

public class LineFormatDataEx
extends java.lang.Object

Immutable object which contains line properties.


Method Summary
 boolean equals(LineFormatDataEx lf)
           Determines whether the two LineValueEx instances are equal.
 boolean equals(java.lang.Object obj)
           Determines whether the two LineValueEx instances are equal.
 byte getAlignment()
           Returns the line alignment.
 byte getBeginArrowheadLength()
           Returns the arrowhead length at the beginning of a line.
 byte getBeginArrowheadStyle()
           Returns the arrowhead style at the beginning of a line.
 byte getBeginArrowheadWidth()
           Returns the arrowhead width at the beginning of a line.
 byte getCapStyle()
           Returns the line cap style.
 float[] getCustomDashPattern()
           Returns the custom dash pattern.
 byte getDashStyle()
           Returns the line dash style.
 byte getEndArrowheadLength()
           Returns the arrowhead length at the end of a line.
 byte getEndArrowheadStyle()
           Returns the arrowhead style at the end of a line.
 byte getEndArrowheadWidth()
           Returns the arrowhead width at the end of a line.
 LineFillFormatDataEx getFillFormat()
           Returns the fill format of a line.
 byte getJoinStyle()
           Returns the lines join style.
 float getMiterLimit()
           Returns the miter limit of a line.
 byte getStyle()
           Returns the line style.
 double getWidth()
           Returns the width of a line.
 int hashCode()
           Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

equals

public boolean equals(java.lang.Object obj)

Determines whether the two LineValueEx instances are equal.

Overrides:
equals in class java.lang.Object
Parameters:
obj - The LineValueEx to compare with the current LineValueEx.
Returns:
<b>true</b> if the specified LineValueEx is equal to the current LineValueEx; otherwise, <b>false</b>.

equals

public boolean equals(LineFormatDataEx lf)

Determines whether the two LineValueEx instances are equal.

Parameters:
lf - The LineValueEx to compare with the current LineValueEx.
Returns:
<b>true</b> if the specified LineValueEx is equal to the current LineValueEx; otherwise, <b>false</b>.

getFillFormat

public LineFillFormatDataEx getFillFormat()

Returns the fill format of a line. Read-only LineFillFormatDataEx .


getWidth

public double getWidth()

Returns the width of a line. Read-only double.


getDashStyle

public byte getDashStyle()

Returns the line dash style. Read-only LineDashStyleEx.


getCustomDashPattern

public float[] getCustomDashPattern()

Returns the custom dash pattern. Read-only float[].


getCapStyle

public byte getCapStyle()

Returns the line cap style. Read-only LineCapStyleEx.


getStyle

public byte getStyle()

Returns the line style. Read-only LineStyleEx.


getAlignment

public byte getAlignment()

Returns the line alignment. Read-only LineAlignmentEx.


getJoinStyle

public byte getJoinStyle()

Returns the lines join style. Read-only LineJoinStyleEx.


getMiterLimit

public float getMiterLimit()

Returns the miter limit of a line. Read-only float.


getBeginArrowheadStyle

public byte getBeginArrowheadStyle()

Returns the arrowhead style at the beginning of a line. Read-only LineArrowheadStyleEx.


getEndArrowheadStyle

public byte getEndArrowheadStyle()

Returns the arrowhead style at the end of a line. Read-only LineArrowheadStyleEx.


getBeginArrowheadWidth

public byte getBeginArrowheadWidth()

Returns the arrowhead width at the beginning of a line. Read-only LineArrowheadWidthEx.


getEndArrowheadWidth

public byte getEndArrowheadWidth()

Returns the arrowhead width at the end of a line. Read-only LineArrowheadWidthEx.


getBeginArrowheadLength

public byte getBeginArrowheadLength()

Returns the arrowhead length at the beginning of a line. Read-only LineArrowheadLengthEx.


getEndArrowheadLength

public byte getEndArrowheadLength()

Returns the arrowhead length at the end of a line. Read-only LineArrowheadLengthEx.


hashCode

public int hashCode()

Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.

Overrides:
hashCode in class java.lang.Object
Returns:
23456


Overriden to make compiler happy. Always returns constant because object is mutable.