Sha256: 88feb2c81ecf5675d3c9873c9a8930822cee6636aff5900dbe5c3eb16673d393
Contents?: true
Size: 847 Bytes
Versions: 10
Compression:
Stored size: 847 Bytes
Contents
require 'vapir-ie/element' require 'vapir-common/elements/elements' module Vapir # This class is used for dealing with tables. # Normally a user would not need to create this object as it is returned by the Vapir::Container#table method # # many of the methods available to this object are inherited from the Element class # class IE::Table < IE::Element include Vapir::Table def self.create_from_element(container, element) Vapir::Table.create_from_element(container, element) end end # this class is a table body class IE::TableBody < IE::Element include Vapir::TBody end class IE::TableRow < IE::Element include Vapir::TableRow end # this class is a table cell - when called via the Table object class IE::TableCell < IE::Element include Vapir::TableCell end end
Version data entries
10 entries across 10 versions & 1 rubygems