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)


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

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:



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

def bbox
  @bbox
end

#default_valueString (readonly)

Returns the value of attribute default_value.

Returns:

  • (String)


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

def default_value
  @default_value
end

#field_typeFormFieldType (readonly)

Returns the value of attribute field_type.

Returns:



1081
1082
1083
# File 'sig/types.rbs', line 1081

def field_type
  @field_type
end

#flagsInteger (readonly)

Returns the value of attribute flags.

Returns:

  • (Integer)


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

def flags
  @flags
end

#full_nameString (readonly)

Returns the value of attribute full_name.

Returns:

  • (String)


1080
1081
1082
# File 'sig/types.rbs', line 1080

def full_name
  @full_name
end

#max_lengthInteger (readonly)

Returns the value of attribute max_length.

Returns:

  • (Integer)


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

def max_length
  @max_length
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


1079
1080
1081
# File 'sig/types.rbs', line 1079

def name
  @name
end

#pageInteger (readonly)

Returns the value of attribute page.

Returns:

  • (Integer)


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

def page
  @page
end

#tooltipString (readonly)

Returns the value of attribute tooltip.

Returns:

  • (String)


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

def tooltip
  @tooltip
end

#valueString (readonly)

Returns the value of attribute value.

Returns:

  • (String)


1082
1083
1084
# File 'sig/types.rbs', line 1082

def value
  @value
end