Sha256: a8936a3fc0fef609faafff0687ddc0bebf4d37a20c1160728dd9b11ada2498eb
Contents?: true
Size: 433 Bytes
Versions: 2
Compression:
Stored size: 433 Bytes
Contents
# Table Cell Margin data module OoxmlParser class TableCellMargin attr_accessor :left, :right, :top, :bottom def initialize(left = nil, right = nil, top = nil, bottom = nil) @left = left @top = top @right = right @bottom = bottom end def ==(other) @left == other.left && @top == other.top && @right == other.right && @bottom == other.bottom end end end
Version data entries
2 entries across 2 versions & 1 rubygems