public enum RenderErrorCode extends Enum<RenderErrorCode>
Represents possible missing sections in CAD file
| Enum Constant and Description |
|---|
EmbeddedImageFailed
Unable to export embedded image
|
MissingBlocks
Block information is missing
|
MissingClass
Class is not registered
|
MissingDimensionStyles
Dimension styles information is missing
|
MissingHeader
Header is missing
|
MissingLayouts
Layouts information is missing
|
MissingStyles
Styles information is missing
|
PdfRendererFailed
Unable to render drawing parts with PDF
|
| Modifier and Type | Method and Description |
|---|---|
static RenderErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderErrorCode MissingHeader
Header is missing
public static final RenderErrorCode MissingLayouts
Layouts information is missing
public static final RenderErrorCode MissingBlocks
Block information is missing
public static final RenderErrorCode MissingDimensionStyles
Dimension styles information is missing
public static final RenderErrorCode MissingStyles
Styles information is missing
public static final RenderErrorCode PdfRendererFailed
Unable to render drawing parts with PDF
public static final RenderErrorCode EmbeddedImageFailed
Unable to export embedded image
public static final RenderErrorCode MissingClass
Class is not registered
public static RenderErrorCode[] values()
for (RenderErrorCode c : RenderErrorCode.values()) System.out.println(c);
public static RenderErrorCode 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.