FileDocCategorySizeDatePackage
MoveTo.javaAPI DocExample441Mon Jul 03 20:16:02 BST 2000com.darwinsys.spdf

MoveTo

public 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 voidprint()

		throw new IllegalStateException("print() called on a Text obj");
	
public voidprint(java.lang.StringBuffer sb)

		sb.append(x);
		sb.append(' ");
		sb.append(y);
		sb.append(" Td\n");