Class: DynamicPDFApi::FormFieldInformation
- Inherits:
-
Object
- Object
- DynamicPDFApi::FormFieldInformation
- Defined in:
- lib/ruby_client/FormFieldInformation.rb
Overview
Represents the form field information containing the collection of different types of field informations.
Instance Attribute Summary collapse
-
#button_fields ⇒ Object
Gets or sets a collection of ButtonFieldInformation.
-
#choice_fields ⇒ Object
Gets or sets a collection of ChoiceFieldInformation.
-
#multi_select_list_box_fields ⇒ Object
Gets or sets a collection of MultiSelectListBoxInformation.
-
#push_buttons ⇒ Object
Gets or sets a collection of PushButtonInformation.
-
#signature_fields ⇒ Object
Gets or sets a collection of SignatureFieldInformation.
-
#text_fields ⇒ Object
Gets or sets a collection of TextFieldInformation.
Instance Method Summary collapse
-
#initialize ⇒ FormFieldInformation
constructor
A new instance of FormFieldInformation.
Constructor Details
#initialize ⇒ FormFieldInformation
Returns a new instance of FormFieldInformation.
6 7 8 9 10 11 12 13 |
# File 'lib/ruby_client/FormFieldInformation.rb', line 6 def initialize @signature_fields = nil @text_fields = nil @choice_fields = nil @button_fields = nil @push_buttons = nil @multi_select_list_box_fields = nil end |
Instance Attribute Details
#button_fields ⇒ Object
Gets or sets a collection of ButtonFieldInformation.
33 34 35 |
# File 'lib/ruby_client/FormFieldInformation.rb', line 33 def @button_fields end |
#choice_fields ⇒ Object
Gets or sets a collection of ChoiceFieldInformation.
28 29 30 |
# File 'lib/ruby_client/FormFieldInformation.rb', line 28 def choice_fields @choice_fields end |
#multi_select_list_box_fields ⇒ Object
Gets or sets a collection of MultiSelectListBoxInformation.
43 44 45 |
# File 'lib/ruby_client/FormFieldInformation.rb', line 43 def multi_select_list_box_fields @multi_select_list_box_fields end |
#push_buttons ⇒ Object
Gets or sets a collection of PushButtonInformation.
38 39 40 |
# File 'lib/ruby_client/FormFieldInformation.rb', line 38 def @push_buttons end |
#signature_fields ⇒ Object
Gets or sets a collection of SignatureFieldInformation.
18 19 20 |
# File 'lib/ruby_client/FormFieldInformation.rb', line 18 def signature_fields @signature_fields end |
#text_fields ⇒ Object
Gets or sets a collection of TextFieldInformation.
23 24 25 |
# File 'lib/ruby_client/FormFieldInformation.rb', line 23 def text_fields @text_fields end |