kz.greetgo.msoffice.PageOrientation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.msoffice Show documentation
Show all versions of greetgo.msoffice Show documentation
greetgo library to generate or parse MS Office files
package kz.greetgo.msoffice;
public enum PageOrientation {
PORTRAIT(11906, 16838),
LANDSCAPE(16838, 11906);
public final int width;
public final int height;
PageOrientation(int width, int height) {
this.width = width;
this.height = height;
}
}