inspired.pdf.unbox.base.Column Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unbox-pdf Show documentation
Show all versions of unbox-pdf Show documentation
Unbox PDF is a toolkit for PDF creation based on Apache PDF Box.
package inspired.pdf.unbox.base;
public class Column {
private final float width;
public Column(float width) {
this.width = width;
}
public float width() {
return width;
}
public Column scale(float scale) {
return new Column(width * scale);
}
}