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)


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

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:



1058
1059
1060
# File 'sig/types.rbs', line 1058

def bbox
  @bbox
end

#default_valueString (readonly)

Returns the value of attribute default_value.

Returns:

  • (String)


1055
1056
1057
# File 'sig/types.rbs', line 1055

def default_value
  @default_value
end

#field_typeFormFieldType (readonly)

Returns the value of attribute field_type.

Returns:



1053
1054
1055
# File 'sig/types.rbs', line 1053

def field_type
  @field_type
end

#flagsInteger (readonly)

Returns the value of attribute flags.

Returns:

  • (Integer)


1056
1057
1058
# File 'sig/types.rbs', line 1056

def flags
  @flags
end

#full_nameString (readonly)

Returns the value of attribute full_name.

Returns:

  • (String)


1052
1053
1054
# File 'sig/types.rbs', line 1052

def full_name
  @full_name
end

#max_lengthInteger (readonly)

Returns the value of attribute max_length.

Returns:

  • (Integer)


1059
1060
1061
# File 'sig/types.rbs', line 1059

def max_length
  @max_length
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


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

def name
  @name
end

#pageInteger (readonly)

Returns the value of attribute page.

Returns:

  • (Integer)


1057
1058
1059
# File 'sig/types.rbs', line 1057

def page
  @page
end

#tooltipString (readonly)

Returns the value of attribute tooltip.

Returns:

  • (String)


1060
1061
1062
# File 'sig/types.rbs', line 1060

def tooltip
  @tooltip
end

#valueString (readonly)

Returns the value of attribute value.

Returns:

  • (String)


1054
1055
1056
# File 'sig/types.rbs', line 1054

def value
  @value
end