Class: AsposeSlidesCloud::PatternFill
- Inherits:
-
FillFormat
- Object
- BaseObject
- FillFormat
- AsposeSlidesCloud::PatternFill
- Defined in:
- lib/aspose_slides_cloud/models/pattern_fill.rb
Overview
Represents Pattern Fill
Instance Attribute Summary collapse
-
#back_color ⇒ Object
Gets or sets the back color of the pattern fill.
-
#fore_color ⇒ Object
Gets or sets the fore color of the pattern fill.
-
#style ⇒ Object
Gets or sets the style of pattern fill.
Attributes inherited from FillFormat
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 = {}) ⇒ PatternFill
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 = {}) ⇒ PatternFill
Initializes the object
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_color ⇒ Object
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_color ⇒ Object
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 |
#style ⇒ Object
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_map ⇒ Object
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_types ⇒ Object
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.
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
118 119 120 |
# File 'lib/aspose_slides_cloud/models/pattern_fill.rb', line 118 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
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_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
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
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 |