Sha256: 8b869889ccb43374e0e1534a98301abf08720058ec3e25d957e0da0dcad3d316
Contents?: true
Size: 776 Bytes
Versions: 3
Compression:
Stored size: 776 Bytes
Contents
# coding: utf-8 module Thinreports module Core::Shape 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 = [] @height = 0 @finalized = false @header = nil 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 List::Internal = List::PageState end end
Version data entries
3 entries across 3 versions & 1 rubygems