Class: Origami::Field::Subform
- Inherits:
-
Dictionary
- Object
- Hash
- Dictionary
- Origami::Field::Subform
- Includes:
- Origami::Field, StandardObject
- Defined in:
- lib/origami/acroform.rb
Constant Summary
Constants included from StandardObject
StandardObject::DEFAULT_ATTRIBUTES
Constants inherited from Dictionary
Constants included from Object
Instance Attribute Summary
Attributes inherited from Dictionary
#names_cache, #strings_cache, #xref_cache
Attributes included from Object
#file_offset, #generation, #no, #objstm_offset, #parent
Instance Method Summary collapse
Methods included from Origami::Field
included, #onCalculate, #onFormat, #onKeyStroke, #onValidate, #pre_build
Methods included from StandardObject
#do_type_check, #has_field?, included, #pre_build, #set_default_value, #set_default_values, #version_required
Methods inherited from Dictionary
#[], #[]=, add_type_info, #cast_to, #copy, #delete, guess_type, hint_type, #initialize, #key?, #map!, #merge, #method_missing, native_type, parse, #to_h, #to_obfuscated_str, #to_s
Methods included from Object
#<=>, #cast_to, #copy, #document, #export, #indirect?, #indirect_parent, #initialize, #logicalize, #logicalize!, #native_type, native_type, parse, #post_build, #pre_build, #reference, #set_document, #set_indirect, skip_until_next_obj, #solve, #to_o, #to_s, #type, typeof, #version_required, #xrefs
Constructor Details
This class inherits a constructor from Origami::Dictionary
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Origami::Dictionary
Instance Method Details
#add_fields(*fields) ⇒ Object
218 219 220 221 222 223 224 225 |
# File 'lib/origami/acroform.rb', line 218 def add_fields(*fields) self.Kids ||= [] self.Kids.concat(fields) fields.each { |field| field.Parent = self } self end |