Class: AsposeSlidesCloud::ChartTitle

Inherits:
BaseObject show all
Defined in:
lib/aspose_slides_cloud/models/chart_title.rb

Overview

Represents chart title

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseObject

#_deserialize, #_to_hash, #build_from_hash, #to_body, #to_hash, #to_s

Constructor Details

#initialize(attributes = {}) ⇒ ChartTitle

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 87

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?(:'Text')
    self.text = attributes[:'Text']
  end

  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

  if attributes.has_key?(:'Overlay')
    self.overlay = attributes[:'Overlay']
  end

  if attributes.has_key?(:'FillFormat')
    self.fill_format = attributes[:'FillFormat']
  end

  if attributes.has_key?(:'EffectFormat')
    self.effect_format = attributes[:'EffectFormat']
  end

  if attributes.has_key?(:'LineFormat')
    self.line_format = attributes[:'LineFormat']
  end
end

Instance Attribute Details

#effect_formatObject

Get or sets the effect format.



50
51
52
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 50

def effect_format
  @effect_format
end

#fill_formatObject

Get or sets the fill format.



47
48
49
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 47

def fill_format
  @fill_format
end

#heightObject

Height



41
42
43
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 41

def height
  @height
end

#line_formatObject

Get or sets the line format.



53
54
55
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 53

def line_format
  @line_format
end

#overlayObject

true if other elements are allowed to overlay the legend



44
45
46
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 44

def overlay
  @overlay
end

#textObject

Get or sets the text.



29
30
31
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 29

def text
  @text
end

#widthObject

Width



38
39
40
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 38

def width
  @width
end

#xObject

the X location



32
33
34
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 32

def x
  @x
end

#yObject

the Y location



35
36
37
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 35

def y
  @y
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 56

def self.attribute_map
  {
    :'text' => :'Text',
    :'x' => :'X',
    :'y' => :'Y',
    :'width' => :'Width',
    :'height' => :'Height',
    :'overlay' => :'Overlay',
    :'fill_format' => :'FillFormat',
    :'effect_format' => :'EffectFormat',
    :'line_format' => :'LineFormat',
  }
end

.swagger_typesObject

Attribute type mapping.



71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 71

def self.swagger_types
  {
    :'text' => :'String',
    :'x' => :'Float',
    :'y' => :'Float',
    :'width' => :'Float',
    :'height' => :'Float',
    :'overlay' => :'BOOLEAN',
    :'fill_format' => :'FillFormat',
    :'effect_format' => :'EffectFormat',
    :'line_format' => :'LineFormat',
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



145
146
147
148
149
150
151
152
153
154
155
156
157
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 145

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      text == o.text &&
      x == o.x &&
      y == o.y &&
      width == o.width &&
      height == o.height &&
      overlay == o.overlay &&
      fill_format == o.fill_format &&
      effect_format == o.effect_format &&
      line_format == o.line_format
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


161
162
163
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 161

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



167
168
169
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 167

def hash
  [text, x, y, width, height, overlay, fill_format, effect_format, line_format].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



132
133
134
135
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 132

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



139
140
141
# File 'lib/aspose_slides_cloud/models/chart_title.rb', line 139

def valid?
  true
end