
com.craigburke.document.core.Document.groovy Maven / Gradle / Ivy
package com.craigburke.document.core
import static com.craigburke.document.core.UnitUtil.inchToPoint
/**
* Document node
* @author Craig Burke
*/
class Document extends BaseNode {
final int width = inchToPoint(8.5)
final int height = inchToPoint(11)
List children = []
List embeddedFonts = []
Margin margin = new Margin()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy