git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193703
13f79535-47bb-0310-9956-
ffa450edef68
public class ForeignObjectArea extends Area {
+ protected int xOffset = 0;
/* text-align of contents */
protected int align;
/* vertical align of contents */
renderer.renderForeignObjectArea(this);
}
+ public int getXOffset()
+ {
+ return this.xOffset;
+ }
+
+ public void setStartIndent(int startIndent)
+ {
+ xOffset = startIndent;
+ }
+
public void setObject(Area fobject) {
foreignObject = fobject;
}