Method: FPDF#SetXY

Defined in:
lib/fpdf.rb

#SetXY(x, y) ⇒ Object



891
892
893
894
895
# File 'lib/fpdf.rb', line 891

def SetXY(x,y)
    # Set x and y positions
    SetY(y)
    SetX(x)
end