[]
Serializable, Comparable<PrintQuality>, ConstableUse this enum with IPageSetup.setPrintQuality(PrintQuality) to control the output resolution used when the worksheet is printed. The default print quality is Dpi600.
worksheet.getRange("A1:B2").setValue(new Object[][] {
{"Name", "Value"},
{"Test", 100}
});
worksheet.getPageSetup().setPrintQuality(PrintQuality.Dpi300);
PrintQuality printQuality = worksheet.getPageSetup().getPrintQuality();
Enum.EnumDesc<E extends Enum<E>>static PrintQualityforValue(int value) intgetValue()static PrintQualitystatic PrintQuality[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is nullvalue - The zero-based integer value.PrintQuality member.