| Enum Constant and Description |
|---|
DIRECTLY_IMPOSED
Directly imposed page.
|
DISPLAY_OVER_PRINT_PREVIEW
Display overprint preview.
|
DO_LAZY_ERASE
Erase the page while rendering only as needed.
|
DO_NOT_DOWNLOAD_FONTS
Do not download fonts during rendering.
|
DO_NOT_SUBSTITUTE_WORKING_SPACES
Do not substitute working spaces.
|
EMIT_PAGE_GROUP
Emit a page group.
|
FORCE_GDIPORT
If set, this forces the window draw code to attempt to use GDI instructions internally instead of assuming the incoming Platform device context contains enough information to allow APDFL to make a useful determination.
|
IS_PRINT_PREVIEWING
Same as ForceGDIPort.
|
IS_PRINTING
The page is being printed.
|
IS_PSPRINTING
PostScript printing.
|
OPTIMIZE_FOR_INTERACTIVE |
PASS_METADATATO_AGMPORT
Pass metadata to AGM port.
|
PASS_OCTO_AGMPORT
Pass optional content to AGM port.
|
PASS_OPITO_AGMPORT
Pass open prepress interface (OPI) to AGM port.
|
SUPPRESS_RASTER_ALPHA
Suppress raster alpha.
|
SWAP_COMPONENTS
Render colors in BGR order rather than RGB.
|
USE_ANNOT_FACES
Draw annotation appearances.
|
USE_PRINTER_MARK_ANNOTS
Use printer's mark annotations.
|
USE_STAMP_ANNOTS_ONLY
If set, only consider Stamp annotations.
|
USE_TRAP_ANNOTS
Use trap network annotations.
|
WORKING_SPACES_ONLY_FOR_CHANGE
If this is set, only use a working space instead of a device space if the process color model of the target device is different than that of the source.
|
WRITING_TO_EMF
Indicate that the drawing is writing to an Enhanced MetaFile.
|
| Modifier and Type | Method and Description |
|---|---|
static DrawFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DrawFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DrawFlags DO_LAZY_ERASE
public static final DrawFlags USE_ANNOT_FACES
public static final DrawFlags IS_PRINTING
public static final DrawFlags DISPLAY_OVER_PRINT_PREVIEW
public static final DrawFlags USE_TRAP_ANNOTS
public static final DrawFlags DIRECTLY_IMPOSED
public static final DrawFlags IS_PSPRINTING
public static final DrawFlags EMIT_PAGE_GROUP
public static final DrawFlags USE_PRINTER_MARK_ANNOTS
public static final DrawFlags PASS_OPITO_AGMPORT
public static final DrawFlags PASS_METADATATO_AGMPORT
public static final DrawFlags PASS_OCTO_AGMPORT
public static final DrawFlags DO_NOT_DOWNLOAD_FONTS
public static final DrawFlags WRITING_TO_EMF
public static final DrawFlags DO_NOT_SUBSTITUTE_WORKING_SPACES
public static final DrawFlags SWAP_COMPONENTS
public static final DrawFlags SUPPRESS_RASTER_ALPHA
public static final DrawFlags WORKING_SPACES_ONLY_FOR_CHANGE
public static final DrawFlags USE_STAMP_ANNOTS_ONLY
public static final DrawFlags FORCE_GDIPORT
public static final DrawFlags IS_PRINT_PREVIEWING
public static final DrawFlags OPTIMIZE_FOR_INTERACTIVE
public static DrawFlags[] values()
for (DrawFlags c : DrawFlags.values()) System.out.println(c);
public static DrawFlags valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null