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)


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

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:



1091
1092
1093
# File 'sig/types.rbs', line 1091

def bbox
  @bbox
end

#default_valueString (readonly)

Returns the value of attribute default_value.

Returns:

  • (String)


1088
1089
1090
# File 'sig/types.rbs', line 1088

def default_value
  @default_value
end

#field_typeFormFieldType (readonly)

Returns the value of attribute field_type.

Returns:



1086
1087
1088
# File 'sig/types.rbs', line 1086

def field_type
  @field_type
end

#flagsInteger (readonly)

Returns the value of attribute flags.

Returns:

  • (Integer)


1089
1090
1091
# File 'sig/types.rbs', line 1089

def flags
  @flags
end

#full_nameString (readonly)

Returns the value of attribute full_name.

Returns:

  • (String)


1085
1086
1087
# File 'sig/types.rbs', line 1085

def full_name
  @full_name
end

#max_lengthInteger (readonly)

Returns the value of attribute max_length.

Returns:

  • (Integer)


1092
1093
1094
# File 'sig/types.rbs', line 1092

def max_length
  @max_length
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


1084
1085
1086
# File 'sig/types.rbs', line 1084

def name
  @name
end

#pageInteger (readonly)

Returns the value of attribute page.

Returns:

  • (Integer)


1090
1091
1092
# File 'sig/types.rbs', line 1090

def page
  @page
end

#tooltipString (readonly)

Returns the value of attribute tooltip.

Returns:

  • (String)


1093
1094
1095
# File 'sig/types.rbs', line 1093

def tooltip
  @tooltip
end

#valueString (readonly)

Returns the value of attribute value.

Returns:

  • (String)


1087
1088
1089
# File 'sig/types.rbs', line 1087

def value
  @value
end