public enum CadPlotPaperUnits extends Enum<CadPlotPaperUnits>
Plot paper units.
CadPlotSettings
| Enum Constant and Description |
|---|
PlotInInches
The plot in inches
|
PlotInMillimeters
The plot in millimeters
|
PlotInPixels
The plot in pixels
|
| Modifier and Type | Method and Description |
|---|---|
static CadPlotPaperUnits |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CadPlotPaperUnits[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CadPlotPaperUnits PlotInInches
The plot in inches
public static final CadPlotPaperUnits PlotInMillimeters
The plot in millimeters
public static final CadPlotPaperUnits PlotInPixels
The plot in pixels
public static CadPlotPaperUnits[] values()
for (CadPlotPaperUnits c : CadPlotPaperUnits.values()) System.out.println(c);
public static CadPlotPaperUnits 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 (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.