class Field

Public Class Methods

button() click to toggle source
# File lib/field.rb, line 9
def button
  @button = pdf_name.Btn.toString
end
choice() click to toggle source
# File lib/field.rb, line 13
def choice
  @choice = pdf_name.Ch.toString
end
pdf_name() click to toggle source
# File lib/field.rb, line 5
def pdf_name
  @pdf_nanme ||= Rjb.import('com.itextpdf.kernel.pdf.PdfName')
end
signature() click to toggle source
# File lib/field.rb, line 17
def signature
  @signature = pdf_name.Sig.toString
end
text() click to toggle source
# File lib/field.rb, line 21
def text
  @text = pdf_name.Tx.toString
end