Class: Xberg::PdfFormField

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePdfFormField

Returns a new instance of PdfFormField.

Parameters:

  • name: (String)
  • full_name: (String)
  • field_type: (FormFieldType)
  • value: (String)
  • default_value: (String)
  • flags: (Integer)
  • page: (Integer)
  • bbox: (BoundingBox)
  • max_length: (Integer)
  • tooltip: (String)


1051
# File 'sig/types.rbs', line 1051

def initialize: (name: String, full_name: String, field_type: FormFieldType, ?value: String, ?default_value: String, flags: Integer, ?page: Integer, ?bbox: BoundingBox, ?max_length: Integer, ?tooltip: String) -> void

Instance Attribute Details

#bboxBoundingBox (readonly)

Returns the value of attribute bbox.

Returns:



1047
1048
1049
# File 'sig/types.rbs', line 1047

def bbox
  @bbox
end

#default_valueString (readonly)

Returns the value of attribute default_value.

Returns:

  • (String)


1044
1045
1046
# File 'sig/types.rbs', line 1044

def default_value
  @default_value
end

#field_typeFormFieldType (readonly)

Returns the value of attribute field_type.

Returns:



1042
1043
1044
# File 'sig/types.rbs', line 1042

def field_type
  @field_type
end

#flagsInteger (readonly)

Returns the value of attribute flags.

Returns:

  • (Integer)


1045
1046
1047
# File 'sig/types.rbs', line 1045

def flags
  @flags
end

#full_nameString (readonly)

Returns the value of attribute full_name.

Returns:

  • (String)


1041
1042
1043
# File 'sig/types.rbs', line 1041

def full_name
  @full_name
end

#max_lengthInteger (readonly)

Returns the value of attribute max_length.

Returns:

  • (Integer)


1048
1049
1050
# File 'sig/types.rbs', line 1048

def max_length
  @max_length
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


1040
1041
1042
# File 'sig/types.rbs', line 1040

def name
  @name
end

#pageInteger (readonly)

Returns the value of attribute page.

Returns:

  • (Integer)


1046
1047
1048
# File 'sig/types.rbs', line 1046

def page
  @page
end

#tooltipString (readonly)

Returns the value of attribute tooltip.

Returns:

  • (String)


1049
1050
1051
# File 'sig/types.rbs', line 1049

def tooltip
  @tooltip
end

#valueString (readonly)

Returns the value of attribute value.

Returns:

  • (String)


1043
1044
1045
# File 'sig/types.rbs', line 1043

def value
  @value
end