Class: AsposeSlidesCloud::PatternFill

Inherits:
FillFormat show all
Defined in:
lib/aspose_slides_cloud/models/pattern_fill.rb

Overview

Represents Pattern Fill

Instance Attribute Summary collapse

Attributes inherited from FillFormat

#type

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 = {}) ⇒ PatternFill

Initializes the object

Parameters:

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

    Model attributes in the form of hash



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/aspose_slides_cloud/models/pattern_fill.rb', line 57

def initialize(attributes = {})
  super

  if attributes.has_key?(:'BackColor')
    self.back_color = attributes[:'BackColor']
  end

  if attributes.has_key?(:'ForeColor')
    self.fore_color = attributes[:'ForeColor']
  end

  if attributes.has_key?(:'Style')
    self.style = attributes[:'Style']
  end
  self.type = 'Pattern'
end

Instance Attribute Details

#back_colorObject

Gets or sets the back color of the pattern fill.



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

def back_color
  @back_color
end

#fore_colorObject

Gets or sets the fore color of the pattern fill.



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

def fore_color
  @fore_color
end

#styleObject

Gets or sets the style of pattern fill.



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

def style
  @style
end

Class Method Details

.attribute_mapObject

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



38
39
40
41
42
43
44
# File 'lib/aspose_slides_cloud/models/pattern_fill.rb', line 38

def self.attribute_map
  super.merge({
    :'back_color' => :'BackColor',
    :'fore_color' => :'ForeColor',
    :'style' => :'Style',
  })
end

.swagger_typesObject

Attribute type mapping.



47
48
49
50
51
52
53
# File 'lib/aspose_slides_cloud/models/pattern_fill.rb', line 47

def self.swagger_types
  super.merge({
    :'back_color' => :'String',
    :'fore_color' => :'String',
    :'style' => :'String',
  })
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



107
108
109
110
111
112
113
114
# File 'lib/aspose_slides_cloud/models/pattern_fill.rb', line 107

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      type == o.type &&
      back_color == o.back_color &&
      fore_color == o.fore_color &&
      style == o.style
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


118
119
120
# File 'lib/aspose_slides_cloud/models/pattern_fill.rb', line 118

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



124
125
126
# File 'lib/aspose_slides_cloud/models/pattern_fill.rb', line 124

def hash
  [type, back_color, fore_color, style].hash
end

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properties with the reasons



76
77
78
79
80
81
82
83
# File 'lib/aspose_slides_cloud/models/pattern_fill.rb', line 76

def list_invalid_properties
  invalid_properties = super
  if @style.nil?
    invalid_properties.push('invalid value for "style", style cannot be nil.')
  end

  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



87
88
89
90
91
92
93
# File 'lib/aspose_slides_cloud/models/pattern_fill.rb', line 87

def valid?
  return false if !super
  return false if @style.nil?
  style_validator = EnumAttributeValidator.new('String', ['Unknown', 'Percent05', 'Percent10', 'Percent20', 'Percent25', 'Percent30', 'Percent40', 'Percent50', 'Percent60', 'Percent70', 'Percent75', 'Percent80', 'Percent90', 'DarkHorizontal', 'DarkVertical', 'DarkDownwardDiagonal', 'DarkUpwardDiagonal', 'SmallCheckerBoard', 'Trellis', 'LightHorizontal', 'LightVertical', 'LightDownwardDiagonal', 'LightUpwardDiagonal', 'SmallGrid', 'DottedDiamond', 'WideDownwardDiagonal', 'WideUpwardDiagonal', 'DashedUpwardDiagonal', 'DashedDownwardDiagonal', 'NarrowVertical', 'NarrowHorizontal', 'DashedVertical', 'DashedHorizontal', 'LargeConfetti', 'LargeGrid', 'HorizontalBrick', 'LargeCheckerBoard', 'SmallConfetti', 'Zigzag', 'SolidDiamond', 'DiagonalBrick', 'OutlinedDiamond', 'Plaid', 'Sphere', 'Weave', 'DottedGrid', 'Divot', 'Shingle', 'Wave', 'Horizontal', 'Vertical', 'Cross', 'DownwardDiagonal', 'UpwardDiagonal', 'DiagonalCross', 'NotDefined'])
  return false unless style_validator.valid?(@style)
  true
end