class RubyXL::CorePropertiesFile
Constants
- CONTENT_TYPE
- REL_TYPE
Attributes
Public Instance Methods
Source
# File lib/rubyXL/objects/document_properties.rb, line 140 def created_at dcterms_created && dcterms_created.to_time end
Source
# File lib/rubyXL/objects/document_properties.rb, line 144 def created_at=(v) self.dcterms_created = RubyXL::StringNodeW3C.default(v) end
Source
# File lib/rubyXL/objects/document_properties.rb, line 124 def creator dc_creator && dc_creator.value end
Source
# File lib/rubyXL/objects/document_properties.rb, line 128 def creator=(v) self.dc_creator = v && RubyXL::StringNode.new(:value => v) end
Source
# File lib/rubyXL/objects/document_properties.rb, line 148 def modified_at dcterms_modified && dcterms_modified.to_time end
Source
# File lib/rubyXL/objects/document_properties.rb, line 152 def modified_at=(v) self.dcterms_modified = RubyXL::StringNodeW3C.default(v) end
Source
# File lib/rubyXL/objects/document_properties.rb, line 132 def modifier cp_last_modified_by && cp_last_modified_by.value end
Source
# File lib/rubyXL/objects/document_properties.rb, line 136 def modifier=(v) self.cp_last_modified_by = v && RubyXL::StringNode.new(:value => v) end
Source
# File lib/rubyXL/objects/document_properties.rb, line 120 def xlsx_path ROOT.join('docProps', 'core.xml') end