poi/src/ooxml/java/org/apache/poi/xslf/usermodel/LineCap.java

19 lines
280 B
Java
Executable File

package org.apache.poi.xslf.usermodel;
/**
*/
public enum LineCap {
/**
* Rounded ends - the default
*/
ROUND,
/**
* Square protrudes by half line width
*/
SQUARE,
/**
* Line ends at end point
*/
FLAT;
}