Sha256: 6591f2e95335cc8f4020c393d5c14a45b2519ed2e0defba8478d4ff9c1785a68
Contents?: true
Size: 543 Bytes
Versions: 36
Compression:
Stored size: 543 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Stuff for help working with paragraph module DocxParagraphHelper # @return [Nil, CommentExtended] extended data for this comment def comment_extend_data return if @paragraph_id.nil? root_object.comments_extended.by_id(@paragraph_id) end # Temp method to return background color # Need to be compatible with older versions # @return [OoxmlParser::Color] def background_color paragraph_properties.shade.to_background_color end end end
Version data entries
36 entries across 36 versions & 1 rubygems