public enum XpsDashCap extends Enum<XpsDashCap>
Valid values of Path element's StrokeDashCap property.
Enum Constant and Description |
---|
Flat
Flat dash cap.
|
Round
Roud dash cap.
|
Square
Square dash cap.
|
Triangle
Triangle dash cap.
|
Modifier and Type | Method and Description |
---|---|
static XpsDashCap |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XpsDashCap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XpsDashCap Flat
Flat dash cap.
public static final XpsDashCap Round
Roud dash cap.
public static final XpsDashCap Square
Square dash cap.
public static final XpsDashCap Triangle
Triangle dash cap.
public static XpsDashCap[] values()
for (XpsDashCap c : XpsDashCap.values()) System.out.println(c);
public static XpsDashCap valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019 Aspose. All Rights Reserved.