Sha256: d093f509845ff2a31903143399ac1a8a95e8345f2479fd19c7bbe5082cf5a3d5
Contents?: true
Size: 867 Bytes
Versions: 12
Compression:
Stored size: 867 Bytes
Contents
require "openxml/docx/properties/latent_styles_exception" module OpenXml module Docx module Properties class LatentStyles < ContainerProperty child_class :latent_styles_exception with_namespace :w do attribute :count, expects: :positive_integer attribute :default_locked_state, expects: :boolean, displays_as: :defLockedState attribute :default_qformat, expects: :boolean, displays_as: :defQFormat attribute :default_semi_hidden, expects: :boolean, displays_as: :defSemiHidden attribute :default_ui_priority, expects: :integer, displays_as: :defUIPriority attribute :default_unhide_when_used, expects: :boolean, displays_as: :defUnhideWhenUsed end def render? true # Output XML even if there are no children end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems