Sha256: 41bb2cf64624a4fc503361f12264b57dec736d4f76fd6df8d98886949b915e91
Contents?: true
Size: 866 Bytes
Versions: 1
Compression:
Stored size: 866 Bytes
Contents
# coding: utf-8 module ThinReports module Core::Shape # @private class List::PageState < Basic::Internal attr_reader :rows attr_accessor :height attr_accessor :header attr_accessor :no attr_accessor :manager def initialize(*args) super(*args) @rows = [] @header = nil @height = 0 @finalized = false end def style @style ||= Style::Basic.new(format) end def finalized? @finalized end def finalized! @finalized = true end def type_of?(type_name) type_name == :list end end # Alias to List::PageState. # @see ThinReports::Core::Shape::List::PageState # @private List::Internal = List::PageState end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
thinreports-0.7.7 | lib/thinreports/core/shape/list/page_state.rb |