class HexaPDF::Layout::Style

def update(**properties)

Updates the style's properties using the key-value pairs specified by the +properties+ hash.

style.update(**properties) -> style
:call-seq:
def update(**properties)
  properties.each {|key, value| send(key, value) }
  self
end