class RubyXL::CorePropertiesFile
Constants
- CONTENT_TYPE
- REL_TYPE
Attributes
workbook[RW]
Public Instance Methods
created_at()
click to toggle source
# File lib/rubyXL/objects/document_properties.rb, line 141 def created_at dcterms_created && dcterms_created.to_time end
created_at=(v)
click to toggle source
# File lib/rubyXL/objects/document_properties.rb, line 145 def created_at=(v) self.dcterms_created = RubyXL::StringNodeW3C.default(v) end
creator()
click to toggle source
# File lib/rubyXL/objects/document_properties.rb, line 125 def creator dc_creator && dc_creator.value end
creator=(v)
click to toggle source
# File lib/rubyXL/objects/document_properties.rb, line 129 def creator=(v) self.dc_creator = v && RubyXL::StringNodeW3C.new(:value => v) end
modified_at()
click to toggle source
# File lib/rubyXL/objects/document_properties.rb, line 149 def modified_at dcterms_modified && dcterms_modified.to_time end
modified_at=(v)
click to toggle source
# File lib/rubyXL/objects/document_properties.rb, line 153 def modified_at=(v) self.dcterms_modified = RubyXL::StringNodeW3C.default(v) end
modifier()
click to toggle source
# File lib/rubyXL/objects/document_properties.rb, line 133 def modifier cp_last_modified_by && cp_last_modified_by.value end
modifier=(v)
click to toggle source
# File lib/rubyXL/objects/document_properties.rb, line 137 def modifier=(v) self.cp_last_modified_by = v && RubyXL::StringNodeW3C.new(:value => v) end
xlsx_path()
click to toggle source
# File lib/rubyXL/objects/document_properties.rb, line 121 def xlsx_path ROOT.join('docProps', 'core.xml') end