net.rgielen.com4j.office2010.excel.XlPaperSize Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlPaperSize implements ComEnum {
/**
*
* The value of this constant is 16
*
*/
xlPaper10x14(16),
/**
*
* The value of this constant is 17
*
*/
xlPaper11x17(17),
/**
*
* The value of this constant is 8
*
*/
xlPaperA3(8),
/**
*
* The value of this constant is 9
*
*/
xlPaperA4(9),
/**
*
* The value of this constant is 10
*
*/
xlPaperA4Small(10),
/**
*
* The value of this constant is 11
*
*/
xlPaperA5(11),
/**
*
* The value of this constant is 12
*
*/
xlPaperB4(12),
/**
*
* The value of this constant is 13
*
*/
xlPaperB5(13),
/**
*
* The value of this constant is 24
*
*/
xlPaperCsheet(24),
/**
*
* The value of this constant is 25
*
*/
xlPaperDsheet(25),
/**
*
* The value of this constant is 20
*
*/
xlPaperEnvelope10(20),
/**
*
* The value of this constant is 21
*
*/
xlPaperEnvelope11(21),
/**
*
* The value of this constant is 22
*
*/
xlPaperEnvelope12(22),
/**
*
* The value of this constant is 23
*
*/
xlPaperEnvelope14(23),
/**
*
* The value of this constant is 19
*
*/
xlPaperEnvelope9(19),
/**
*
* The value of this constant is 33
*
*/
xlPaperEnvelopeB4(33),
/**
*
* The value of this constant is 34
*
*/
xlPaperEnvelopeB5(34),
/**
*
* The value of this constant is 35
*
*/
xlPaperEnvelopeB6(35),
/**
*
* The value of this constant is 29
*
*/
xlPaperEnvelopeC3(29),
/**
*
* The value of this constant is 30
*
*/
xlPaperEnvelopeC4(30),
/**
*
* The value of this constant is 28
*
*/
xlPaperEnvelopeC5(28),
/**
*
* The value of this constant is 31
*
*/
xlPaperEnvelopeC6(31),
/**
*
* The value of this constant is 32
*
*/
xlPaperEnvelopeC65(32),
/**
*
* The value of this constant is 27
*
*/
xlPaperEnvelopeDL(27),
/**
*
* The value of this constant is 36
*
*/
xlPaperEnvelopeItaly(36),
/**
*
* The value of this constant is 37
*
*/
xlPaperEnvelopeMonarch(37),
/**
*
* The value of this constant is 38
*
*/
xlPaperEnvelopePersonal(38),
/**
*
* The value of this constant is 26
*
*/
xlPaperEsheet(26),
/**
*
* The value of this constant is 7
*
*/
xlPaperExecutive(7),
/**
*
* The value of this constant is 41
*
*/
xlPaperFanfoldLegalGerman(41),
/**
*
* The value of this constant is 40
*
*/
xlPaperFanfoldStdGerman(40),
/**
*
* The value of this constant is 39
*
*/
xlPaperFanfoldUS(39),
/**
*
* The value of this constant is 14
*
*/
xlPaperFolio(14),
/**
*
* The value of this constant is 4
*
*/
xlPaperLedger(4),
/**
*
* The value of this constant is 5
*
*/
xlPaperLegal(5),
/**
*
* The value of this constant is 1
*
*/
xlPaperLetter(1),
/**
*
* The value of this constant is 2
*
*/
xlPaperLetterSmall(2),
/**
*
* The value of this constant is 18
*
*/
xlPaperNote(18),
/**
*
* The value of this constant is 15
*
*/
xlPaperQuarto(15),
/**
*
* The value of this constant is 6
*
*/
xlPaperStatement(6),
/**
*
* The value of this constant is 3
*
*/
xlPaperTabloid(3),
/**
*
* The value of this constant is 256
*
*/
xlPaperUser(256),
;
private final int value;
XlPaperSize(int value) { this.value=value; }
public int comEnumValue() { return value; }
}