Method: PDF::Core::NameTree::Value#initialize
- Defined in:
- lib/pdf/core/name_tree.rb
#initialize(name, value) ⇒ Value
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Value.
215 216 217 218 |
# File 'lib/pdf/core/name_tree.rb', line 215 def initialize(name, value) @name = PDF::Core::LiteralString.new(name) @value = value end |