Sha256: 2cb5fb790240d01d3e118c595fc3768ef9e6be8adf78429ce509c1c41b5f59d8
Contents?: true
Size: 1.38 KB
Versions: 12
Compression:
Stored size: 1.38 KB
Contents
module OpenXml module Docx module Properties class Frame < ComplexProperty tag :framePr with_namespace :w do attribute :anchor_lock, expects: :boolean attribute :drop_cap, one_of: %i(drop margin none) attribute :height, expects: :positive_integer, displays_as: :h attribute :height_rule, one_of: %i(atLeast auto exact), displays_as: :hRule attribute :horizontal_anchor, one_of: %i(margin page text), displays_as: :hAnchor attribute :horizontal_padding, expects: :positive_integer, displays_as: :hSpace attribute :horizontal_position, expects: :integer, displays_as: :x attribute :lines, expects: :positive_integer attribute :relative_horizontal_position, one_of: %i(center inside left outside right), displays_as: :xAlign attribute :relative_vertical_position, one_of: %i(bottom center inline inside outside top), displays_as: :yAlign attribute :vertical_anchor, one_of: %i(margin page text), displays_as: :vAnchor attribute :vertical_padding, expects: :positive_integer, displays_as: :vSpace attribute :vertical_position, expects: :integer, displays_as: :y attribute :width, expects: :positive_integer, displays_as: :w attribute :wrap, one_of: %i(around auto none notBeside through tight) end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems