Sha256: 1057187bd6aa5c0c5319f3f901797c89095339e463d9a6e2ba5c3edd173fb14c
Contents?: true
Size: 716 Bytes
Versions: 10
Compression:
Stored size: 716 Bytes
Contents
require 'berkeley_library/util/ods/xml/element_node' module BerkeleyLibrary module Util module ODS module XML module Style class TableRowProperties < ElementNode attr_reader :height def initialize(height, doc:) super(:style, 'table-row-properties', doc: doc) @height = height set_default_attributes! end private def set_default_attributes! set_attribute('row-height', height) set_attribute(:fo, 'break-before', 'auto') set_attribute('use-optimal-row-height', 'true') end end end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems