MoveTopublic class MoveTo extends PDFObject Represent one Move object ("moveto") in a PDF file. |
Fields Summary |
---|
protected int | x | protected int | y |
Constructors Summary |
---|
public MoveTo(PDF m, int x, int y)
super(m);
this.x = x;
this.y = y;
|
Methods Summary |
---|
public void | print()
throw new IllegalStateException("print() called on a Text obj");
| public void | print(java.lang.StringBuffer sb)
sb.append(x);
sb.append(' ");
sb.append(y);
sb.append(" Td\n");
|
|