Method: FPDF#Ln

Defined in:
lib/fpdf.rb

#Ln(h = '') ⇒ Object



852
853
854
855
856
857
858
859
860
# File 'lib/fpdf.rb', line 852

def Ln(h='')
    # Line feed; default value is last cell height
    @x=@lMargin
    if h.kind_of?(String)
        @y=@y+@lasth
    else
        @y=@y+h
    end
end