Class: Uniword::Wordprocessingml::TableProperties

Inherits:
Lutaml::Model::Serializable
  • Object
show all
Defined in:
lib/uniword/wordprocessingml/table_properties.rb

Overview

Table formatting properties

Represents w:tblPr element containing table-level formatting. Used in StyleSets and table elements.

Instance Method Summary collapse

Constructor Details

#initialize(attrs = {}) ⇒ TableProperties

Returns a new instance of TableProperties.



109
110
111
112
113
114
# File 'lib/uniword/wordprocessingml/table_properties.rb', line 109

def initialize(attrs = {})
  super

  @borders ||= false
  @allow_break = true if @allow_break.nil?
end