Package org.apache.poi.sl.usermodel
Interface LineDecoration
-
public interface LineDecoration
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
LineDecoration.DecorationShape
Represents the shape decoration that appears at the ends of lines.static class
LineDecoration.DecorationSize
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LineDecoration.DecorationSize
getHeadLength()
LineDecoration.DecorationShape
getHeadShape()
LineDecoration.DecorationSize
getHeadWidth()
LineDecoration.DecorationSize
getTailLength()
LineDecoration.DecorationShape
getTailShape()
LineDecoration.DecorationSize
getTailWidth()
-
-
-
Method Detail
-
getHeadShape
LineDecoration.DecorationShape getHeadShape()
- Returns:
- the line start shape
-
getHeadWidth
LineDecoration.DecorationSize getHeadWidth()
- Returns:
- the width of the start shape
-
getHeadLength
LineDecoration.DecorationSize getHeadLength()
- Returns:
- the length of the start shape
-
getTailShape
LineDecoration.DecorationShape getTailShape()
- Returns:
- the line end shape
-
getTailWidth
LineDecoration.DecorationSize getTailWidth()
- Returns:
- the width of the end shape
-
getTailLength
LineDecoration.DecorationSize getTailLength()
- Returns:
- the length of the end shape
-
-