class OpenXml::Docx::Properties::LinkedStyle
Public Instance Methods
invalid_message()
click to toggle source
# File lib/openxml/docx/properties/linked_style.rb, line 11 def invalid_message "#{name} must be a string that is not empty" end
valid?()
click to toggle source
# File lib/openxml/docx/properties/linked_style.rb, line 7 def valid? value.is_a?(String) && value.length > 0 end