Namespace EasyXLS.Drawings
Class LineDrawingObject
- System.Object
-
- EasyXLS.Drawings.DrawingObject
-
- EasyXLS.Drawings.LineDrawingObject
-
- Direct Known Subclasses:
ExcelChartGridlines
,FillDrawingObject
public class LineDrawingObject extends DrawingObject
This class stores a drawing shape having a line color, a line style and a shadow formatting.
-
-
Constructor Summary
Constructors Constructor Description LineDrawingObject()
Defines an instance of a drawing shape having a line color, a line style and a shadow formatting.
-
Method Summary
Modifier and Type Method Description LineColorFormat
getLineColorFormat()
Returns the line color format of the drawing shape.LineStyleFormat
getLineStyleFormat()
Returns the line style format of the drawing shape.ShadowFormat
getShadowFormat()
Returns the shadow format of the drawing shape.void
setLineColorFormat(LineColorFormat lineColorFormat)
Sets the line color format of the drawing shape.void
setLineStyleFormat(LineStyleFormat lineStyleFormat)
Sets the line style format of the drawing shape.void
setShadowFormat(ShadowFormat shadowFormat)
Sets the shadow format of the drawing shape.-
Methods inherited from class EasyXLS.Drawings.DrawingObject
getHeight, getHorizontalOffset, getRelativeHeight, getRelativeHorizontalOffset, getRelativeVerticalOffset, getRelativeWidth, getVerticalOffset, getWidth, setLeftUpperOffset, setRelativeLeftUpperOffset, setRelativeSize, setSize
-
-
-
-
Method Detail
-
getLineColorFormat
public LineColorFormat getLineColorFormat()
Returns the line color format of the drawing shape.- Returns:
- the line color format of the drawing shape
- See Also:
setLineColorFormat(EasyXLS.Drawings.Formatting.LineColorFormat)
-
setLineColorFormat
public void setLineColorFormat(LineColorFormat lineColorFormat)
Sets the line color format of the drawing shape.- Parameters:
lineColorFormat
- the line color format of the drawing shape- See Also:
getLineColorFormat()
-
getLineStyleFormat
public LineStyleFormat getLineStyleFormat()
Returns the line style format of the drawing shape.- Returns:
- the line style format of the drawing shape
- See Also:
setLineStyleFormat(EasyXLS.Drawings.Formatting.LineStyleFormat)
-
setLineStyleFormat
public void setLineStyleFormat(LineStyleFormat lineStyleFormat)
Sets the line style format of the drawing shape.- Parameters:
lineStyleFormat
- the line style format of the drawing shape- See Also:
getLineStyleFormat()
-
getShadowFormat
public ShadowFormat getShadowFormat()
Returns the shadow format of the drawing shape.- Returns:
- the shadow format of the drawing shape
- See Also:
setShadowFormat(EasyXLS.Drawings.Formatting.ShadowFormat)
-
setShadowFormat
public void setShadowFormat(ShadowFormat shadowFormat)
Sets the shadow format of the drawing shape.- Parameters:
shadowFormat
- the shadow format of the drawing shape- See Also:
getShadowFormat()
-
-