本文整理匯總了Java中org.xhtmlrenderer.render.ViewportBox類的典型用法代碼示例。如果您正苦於以下問題:Java ViewportBox類的具體用法?Java ViewportBox怎麽用?Java ViewportBox使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ViewportBox類屬於org.xhtmlrenderer.render包,在下文中一共展示了ViewportBox類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: layout
import org.xhtmlrenderer.render.ViewportBox; //導入依賴的package包/類
private void layout(int width) {
Rectangle rect = new Rectangle(0, 0, width, DEFAULT_HEIGHT);
sharedContext.set_TempCanvas(rect);
LayoutContext c = newLayoutContext();
BlockBox root = BoxBuilder.createRootBox(c, doc);
root.setContainingBlock(new ViewportBox(rect));
root.layout(c);
this.root = root;
}
示例2: layout
import org.xhtmlrenderer.render.ViewportBox; //導入依賴的package包/類
public void layout() {
LayoutContext c = newLayoutContext();
BlockBox root = BoxBuilder.createRootBox(c, _doc);
root.setContainingBlock(new ViewportBox(getInitialExtents(c)));
root.layout(c);
_dim = root.getLayer().getPaintingDimension(c);
root.getLayer().trimEmptyPages(c, _dim.height);
root.getLayer().layoutPages(c);
_root = root;
}