All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pptx4j.model.SlideSizesWellKnown Maven / Gradle / Ivy

Go to download

docx4j is a library which helps you to work with the Office Open XML file format as used in docx documents, pptx presentations, and xlsx spreadsheets.

There is a newer version: 11.4.11
Show newest version
package org.pptx4j.model;

public enum SlideSizesWellKnown {

	  LETTER("letter"),
	  A3("A3"),
	  A4("A4"),
	  B4JIS("B4JIS"),
	  SCREEN4x3("screen4x3"),
	  SCREEN16x9("screen16x9"),
	  SCREEN16x10("screen16x10"),
	  LEDGER("ledger"),
	  B4ISO("B4ISO"),
	  B5ISO("B5ISO"),
	  MM35("35mm"),
	  OVERHEAD("overhead"),
	  BANNER("banner");
    
    private final String value;

    SlideSizesWellKnown(String v) {
        value = v;
    }

    public String value() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy