Class: AsposeSlidesCloud::TextBounds
- Inherits:
-
BaseObject
- Object
- BaseObject
- AsposeSlidesCloud::TextBounds
- Defined in:
- lib/aspose_slides_cloud/models/text_bounds.rb
Overview
Represents text bounds within a paragraph or portion.
Instance Attribute Summary collapse
-
#height ⇒ Object
Height of the text bounds.
-
#width ⇒ Object
Width of the text bounds.
-
#x ⇒ Object
X coordinate of the text bounds.
-
#y ⇒ Object
X coordinate of the text bounds.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ TextBounds
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Methods inherited from BaseObject
#_deserialize, #_to_hash, #build_from_hash, #to_body, #to_hash, #to_s
Constructor Details
#initialize(attributes = {}) ⇒ TextBounds
Initializes the object
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/aspose_slides_cloud/models/text_bounds.rb', line 62 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } if attributes.has_key?(:'X') self.x = attributes[:'X'] end if attributes.has_key?(:'Y') self.y = attributes[:'Y'] end if attributes.has_key?(:'Width') self.width = attributes[:'Width'] end if attributes.has_key?(:'Height') self.height = attributes[:'Height'] end end |
Instance Attribute Details
#height ⇒ Object
Height of the text bounds.
38 39 40 |
# File 'lib/aspose_slides_cloud/models/text_bounds.rb', line 38 def height @height end |
#width ⇒ Object
Width of the text bounds.
35 36 37 |
# File 'lib/aspose_slides_cloud/models/text_bounds.rb', line 35 def width @width end |
#x ⇒ Object
X coordinate of the text bounds.
29 30 31 |
# File 'lib/aspose_slides_cloud/models/text_bounds.rb', line 29 def x @x end |
#y ⇒ Object
X coordinate of the text bounds.
32 33 34 |
# File 'lib/aspose_slides_cloud/models/text_bounds.rb', line 32 def y @y end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
41 42 43 44 45 46 47 48 |
# File 'lib/aspose_slides_cloud/models/text_bounds.rb', line 41 def self.attribute_map { :'x' => :'X', :'y' => :'Y', :'width' => :'Width', :'height' => :'Height', } end |
.swagger_types ⇒ Object
Attribute type mapping.
51 52 53 54 55 56 57 58 |
# File 'lib/aspose_slides_cloud/models/text_bounds.rb', line 51 def self.swagger_types { :'x' => :'Float', :'y' => :'Float', :'width' => :'Float', :'height' => :'Float', } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
120 121 122 123 124 125 126 127 |
# File 'lib/aspose_slides_cloud/models/text_bounds.rb', line 120 def ==(o) return true if self.equal?(o) self.class == o.class && x == o.x && y == o.y && width == o.width && height == o.height end |
#eql?(o) ⇒ Boolean
131 132 133 |
# File 'lib/aspose_slides_cloud/models/text_bounds.rb', line 131 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
137 138 139 |
# File 'lib/aspose_slides_cloud/models/text_bounds.rb', line 137 def hash [x, y, width, height].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
# File 'lib/aspose_slides_cloud/models/text_bounds.rb', line 87 def list_invalid_properties invalid_properties = Array.new if @x.nil? invalid_properties.push('invalid value for "x", x cannot be nil.') end if @y.nil? invalid_properties.push('invalid value for "y", y cannot be nil.') end if @width.nil? invalid_properties.push('invalid value for "width", width cannot be nil.') end if @height.nil? invalid_properties.push('invalid value for "height", height cannot be nil.') end invalid_properties end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
110 111 112 113 114 115 116 |
# File 'lib/aspose_slides_cloud/models/text_bounds.rb', line 110 def valid? return false if @x.nil? return false if @y.nil? return false if @width.nil? return false if @height.nil? true end |