# File lib_wpm/wpm.rb, line 1564
    def view
      for i in 1..(@properties.times)
        @properties.index = i if @properties.has_index?
        for component in @child_components
          component.make_page do |page_text|
            yield(page_text)
          end
        end
      end

      nil
    end