Sha256: f94491284f403a437f6e6bea730783a6e48030a5152d53dd3f3b03ec8138d371
Contents?: true
Size: 730 Bytes
Versions: 32
Compression:
Stored size: 730 Bytes
Contents
module GroupDocs class Document::Change < Api::Entity # @attr [Integer] id attr_accessor :id # @attr [Symbol] type attr_accessor :type # @attr [GroupDocs::Document::Rectangle] box attr_accessor :box # @attr [String] text attr_accessor :text # @attr [Integer] page attr_accessor :page # # Returns type as symbol. # # @return [Symbol] # def type @type.to_sym end # # Coverts passed hash to GroupDocs::Document::Rectangle object. # # @param [Hash] options # @return [GroupDocs::Document::Rectangle] # def box=(options) @box = GroupDocs::Document::Rectangle.new(options) end end # Document::Change end # GroupDocs
Version data entries
32 entries across 32 versions & 1 rubygems