Sha256: 40a68ab60fa41c108da6824b308fd2d5de8ce83cb378a000c2f2e38c16bf613d
Contents?: true
Size: 655 Bytes
Versions: 17
Compression:
Stored size: 655 Bytes
Contents
module GroupDocs class Document::Rectangle < GroupDocs::Api::Entity # @attr [Float] X attr_accessor :X # @attr [Float] Y attr_accessor :Y # @attr [Float] Width attr_accessor :Width # @attr [Float] Height attr_accessor :Height # Human-readable accessors alias_method :x, :X alias_method :x=, :X= alias_method :y, :Y alias_method :y=, :Y= alias_method :w, :Width alias_method :w=, :Width= alias_method :width, :w alias_method :h, :Height alias_method :h=, :Height= alias_method :height, :Height end # Document::Rectangle end # GroupDocs
Version data entries
17 entries across 17 versions & 1 rubygems