Class: AsposeCellsCloud::Worksheet

Inherits:
Object
  • Object
show all
Defined in:
lib/aspose_cells_cloud/models/worksheet.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Worksheet

Initializes the object

Parameters:

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

    Model attributes in the form of hash



177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 177

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?(:'Links')
      self.links = attributes[:'Links']
  end
  if attributes.has_key?(:'DisplayRightToLeft')
      self.display_right_to_left = attributes[:'DisplayRightToLeft']
  end
  if attributes.has_key?(:'DisplayZeros')
      self.display_zeros = attributes[:'DisplayZeros']
  end
  if attributes.has_key?(:'FirstVisibleColumn')
      self.first_visible_column = attributes[:'FirstVisibleColumn']
  end
  if attributes.has_key?(:'FirstVisibleRow')
      self.first_visible_row = attributes[:'FirstVisibleRow']
  end
  if attributes.has_key?(:'Name')
      self.name = attributes[:'Name']
  end
  if attributes.has_key?(:'Index')
      self.index = attributes[:'Index']
  end
  if attributes.has_key?(:'IsGridlinesVisible')
      self.is_gridlines_visible = attributes[:'IsGridlinesVisible']
  end
  if attributes.has_key?(:'IsOutlineShown')
      self.is_outline_shown = attributes[:'IsOutlineShown']
  end
  if attributes.has_key?(:'IsPageBreakPreview')
      self.is_page_break_preview = attributes[:'IsPageBreakPreview']
  end
  if attributes.has_key?(:'IsVisible')
      self.is_visible = attributes[:'IsVisible']
  end
  if attributes.has_key?(:'IsProtected')
      self.is_protected = attributes[:'IsProtected']
  end
  if attributes.has_key?(:'IsRowColumnHeadersVisible')
      self.is_row_column_headers_visible = attributes[:'IsRowColumnHeadersVisible']
  end
  if attributes.has_key?(:'IsRulerVisible')
      self.is_ruler_visible = attributes[:'IsRulerVisible']
  end
  if attributes.has_key?(:'IsSelected')
      self.is_selected = attributes[:'IsSelected']
  end
  if attributes.has_key?(:'TabColor')
      self.tab_color = attributes[:'TabColor']
  end
  if attributes.has_key?(:'TransitionEntry')
      self.transition_entry = attributes[:'TransitionEntry']
  end
  if attributes.has_key?(:'TransitionEvaluation')
      self.transition_evaluation = attributes[:'TransitionEvaluation']
  end
  if attributes.has_key?(:'Type')
      self.type = attributes[:'Type']
  end
  if attributes.has_key?(:'ViewType')
      self.view_type = attributes[:'ViewType']
  end
  if attributes.has_key?(:'VisibilityType')
      self.visibility_type = attributes[:'VisibilityType']
  end
  if attributes.has_key?(:'Zoom')
      self.zoom = attributes[:'Zoom']
  end
  if attributes.has_key?(:'Cells')
      self.cells = attributes[:'Cells']
  end
  if attributes.has_key?(:'Charts')
      self.charts = attributes[:'Charts']
  end
  if attributes.has_key?(:'AutoShapes')
      self.auto_shapes = attributes[:'AutoShapes']
  end
  if attributes.has_key?(:'OleObjects')
      self.ole_objects = attributes[:'OleObjects']
  end
  if attributes.has_key?(:'Comments')
      self.comments = attributes[:'Comments']
  end
  if attributes.has_key?(:'Pictures')
      self.pictures = attributes[:'Pictures']
  end
  if attributes.has_key?(:'MergedCells')
      self.merged_cells = attributes[:'MergedCells']
  end
  if attributes.has_key?(:'Validations')
      self.validations = attributes[:'Validations']
  end
  if attributes.has_key?(:'ConditionalFormattings')
      self.conditional_formattings = attributes[:'ConditionalFormattings']
  end
  if attributes.has_key?(:'Hyperlinks')
      self.hyperlinks = attributes[:'Hyperlinks']
  end

end

Instance Attribute Details

#auto_shapesObject

Returns the value of attribute auto_shapes.



83
84
85
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 83

def auto_shapes
  @auto_shapes
end

#cellsObject

Gets the collection.



79
80
81
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 79

def cells
  @cells
end

#chartsObject

Gets a collection



81
82
83
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 81

def charts
  @charts
end

#commentsObject

Gets the collection.



87
88
89
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 87

def comments
  @comments
end

#conditional_formattingsObject

Gets the ConditionalFormattings in the worksheet.



95
96
97
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 95

def conditional_formattings
  @conditional_formattings
end

#display_right_to_leftObject

Indicates if the specified worksheet is displayed from right to left instead of from left to right. Default is false.



37
38
39
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 37

def display_right_to_left
  @display_right_to_left
end

#display_zerosObject

True if zero values are displayed.



39
40
41
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 39

def display_zeros
  @display_zeros
end

#first_visible_columnObject

Represents first visible column index.



41
42
43
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 41

def first_visible_column
  @first_visible_column
end

#first_visible_rowObject

Represents first visible row index.



43
44
45
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 43

def first_visible_row
  @first_visible_row
end

Gets the collection.



97
98
99
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 97

def hyperlinks
  @hyperlinks
end

#indexObject

Gets the index of sheet in the worksheet collection.



47
48
49
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 47

def index
  @index
end

#is_gridlines_visibleObject

Gets or sets a value indicating whether the gridlines are visible.Default is true.



49
50
51
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 49

def is_gridlines_visible
  @is_gridlines_visible
end

#is_outline_shownObject

Indicates whether to show outline.



51
52
53
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 51

def is_outline_shown
  @is_outline_shown
end

#is_page_break_previewObject

Indicates whether the specified worksheet is shown in normal view or page break preview.



53
54
55
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 53

def is_page_break_preview
  @is_page_break_preview
end

#is_protectedObject

Indicates if the worksheet is protected.



57
58
59
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 57

def is_protected
  @is_protected
end

#is_row_column_headers_visibleObject

Gets or sets a value indicating whether the worksheet will display row and column headers. Default is true.



59
60
61
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 59

def is_row_column_headers_visible
  @is_row_column_headers_visible
end

#is_ruler_visibleObject

Indicates whether the ruler is visible. This property is only applied for page break preview.



61
62
63
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 61

def is_ruler_visible
  @is_ruler_visible
end

#is_selectedObject

Indicates whether this worksheet is selected when the workbook is opened.



63
64
65
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 63

def is_selected
  @is_selected
end

#is_visibleObject

Represents if the worksheet is visible.



55
56
57
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 55

def is_visible
  @is_visible
end

Returns the value of attribute links.



35
36
37
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 35

def links
  @links
end

#merged_cellsObject

Returns the value of attribute merged_cells.



91
92
93
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 91

def merged_cells
  @merged_cells
end

#nameObject

Gets or sets the name of the worksheet.



45
46
47
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 45

def name
  @name
end

#ole_objectsObject

Represents a collection of in a worksheet.



85
86
87
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 85

def ole_objects
  @ole_objects
end

#picturesObject

Gets a collection.



89
90
91
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 89

def pictures
  @pictures
end

#tab_colorObject

Represents worksheet tab color.



65
66
67
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 65

def tab_color
  @tab_color
end

#transition_entryObject

Indicates whether the Transition Formula Entry (Lotus compatibility) option is enabled.



67
68
69
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 67

def transition_entry
  @transition_entry
end

#transition_evaluationObject

Indicates whether the Transition Formula Evaluation (Lotus compatibility) option is enabled.



69
70
71
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 69

def transition_evaluation
  @transition_evaluation
end

#typeObject

Represents worksheet type.



71
72
73
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 71

def type
  @type
end

#validationsObject

Gets the data validation setting collection in the worksheet.



93
94
95
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 93

def validations
  @validations
end

#view_typeObject

Gets and sets the view type.



73
74
75
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 73

def view_type
  @view_type
end

#visibility_typeObject

Indicates the visible state for this sheet.



75
76
77
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 75

def visibility_type
  @visibility_type
end

#zoomObject

Represents the scaling factor in percentage. It should be between 10 and 400.



77
78
79
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 77

def zoom
  @zoom
end

Class Method Details

.attribute_mapObject

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



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
129
130
131
132
133
134
135
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 100

def self.attribute_map
  {
    :'links' => :'Links',
    :'display_right_to_left' => :'DisplayRightToLeft',
    :'display_zeros' => :'DisplayZeros',
    :'first_visible_column' => :'FirstVisibleColumn',
    :'first_visible_row' => :'FirstVisibleRow',
    :'name' => :'Name',
    :'index' => :'Index',
    :'is_gridlines_visible' => :'IsGridlinesVisible',
    :'is_outline_shown' => :'IsOutlineShown',
    :'is_page_break_preview' => :'IsPageBreakPreview',
    :'is_visible' => :'IsVisible',
    :'is_protected' => :'IsProtected',
    :'is_row_column_headers_visible' => :'IsRowColumnHeadersVisible',
    :'is_ruler_visible' => :'IsRulerVisible',
    :'is_selected' => :'IsSelected',
    :'tab_color' => :'TabColor',
    :'transition_entry' => :'TransitionEntry',
    :'transition_evaluation' => :'TransitionEvaluation',
    :'type' => :'Type',
    :'view_type' => :'ViewType',
    :'visibility_type' => :'VisibilityType',
    :'zoom' => :'Zoom',
    :'cells' => :'Cells',
    :'charts' => :'Charts',
    :'auto_shapes' => :'AutoShapes',
    :'ole_objects' => :'OleObjects',
    :'comments' => :'Comments',
    :'pictures' => :'Pictures',
    :'merged_cells' => :'MergedCells',
    :'validations' => :'Validations',
    :'conditional_formattings' => :'ConditionalFormattings',
    :'hyperlinks' => :'Hyperlinks'
  }
end

.swagger_typesObject

Attribute type mapping.



138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 138

def self.swagger_types
  {
    :'links' => :'Array<Link>',
    :'display_right_to_left' => :'BOOLEAN',
    :'display_zeros' => :'BOOLEAN',
    :'first_visible_column' => :'Integer',
    :'first_visible_row' => :'Integer',
    :'name' => :'String',
    :'index' => :'Integer',
    :'is_gridlines_visible' => :'BOOLEAN',
    :'is_outline_shown' => :'BOOLEAN',
    :'is_page_break_preview' => :'BOOLEAN',
    :'is_visible' => :'BOOLEAN',
    :'is_protected' => :'BOOLEAN',
    :'is_row_column_headers_visible' => :'BOOLEAN',
    :'is_ruler_visible' => :'BOOLEAN',
    :'is_selected' => :'BOOLEAN',
    :'tab_color' => :'Color',
    :'transition_entry' => :'BOOLEAN',
    :'transition_evaluation' => :'BOOLEAN',
    :'type' => :'String',
    :'view_type' => :'String',
    :'visibility_type' => :'String',
    :'zoom' => :'Integer',
    :'cells' => :'LinkElement',
    :'charts' => :'LinkElement',
    :'auto_shapes' => :'LinkElement',
    :'ole_objects' => :'LinkElement',
    :'comments' => :'LinkElement',
    :'pictures' => :'LinkElement',
    :'merged_cells' => :'LinkElement',
    :'validations' => :'LinkElement',
    :'conditional_formattings' => :'LinkElement',
    :'hyperlinks' => :'LinkElement'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 426

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      links == o.links &&
      display_right_to_left == o.display_right_to_left &&
      display_zeros == o.display_zeros &&
      first_visible_column == o.first_visible_column &&
      first_visible_row == o.first_visible_row &&
      name == o.name &&
      index == o.index &&
      is_gridlines_visible == o.is_gridlines_visible &&
      is_outline_shown == o.is_outline_shown &&
      is_page_break_preview == o.is_page_break_preview &&
      is_visible == o.is_visible &&
      is_protected == o.is_protected &&
      is_row_column_headers_visible == o.is_row_column_headers_visible &&
      is_ruler_visible == o.is_ruler_visible &&
      is_selected == o.is_selected &&
      tab_color == o.tab_color &&
      transition_entry == o.transition_entry &&
      transition_evaluation == o.transition_evaluation &&
      type == o.type &&
      view_type == o.view_type &&
      visibility_type == o.visibility_type &&
      zoom == o.zoom &&
      cells == o.cells &&
      charts == o.charts &&
      auto_shapes == o.auto_shapes &&
      ole_objects == o.ole_objects &&
      comments == o.comments &&
      pictures == o.pictures &&
      merged_cells == o.merged_cells &&
      validations == o.validations &&
      conditional_formattings == o.conditional_formattings &&
      hyperlinks == o.hyperlinks 
      std_dev == o.std_dev
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 500

def _deserialize(type, value)
  case type.to_sym
  when :DateTime
    DateTime.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :BOOLEAN
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    temp_model = AsposeCellsCloud.const_get(type).new
    temp_model.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



566
567
568
569
570
571
572
573
574
575
576
577
578
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 566

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map{ |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 479

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.swagger_types.each_pair do |key, type|
    if type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    end # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


466
467
468
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 466

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



472
473
474
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 472

def hash
  [ links , display_right_to_left , display_zeros , first_visible_column , first_visible_row , name , index , is_gridlines_visible , is_outline_shown , is_page_break_preview , is_visible , is_protected , is_row_column_headers_visible , is_ruler_visible , is_selected , tab_color , transition_entry , transition_evaluation , type , view_type , visibility_type , zoom , cells , charts , auto_shapes , ole_objects , comments , pictures , merged_cells , validations , conditional_formattings , hyperlinks ].hash
end

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properies with the reasons



284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 284

def list_invalid_properties
  invalid_properties = Array.new
  if @links.nil?
      invalid_properties.push("invalid value for 'links', links cannot be nil.")
  end
  if @display_right_to_left.nil?
      invalid_properties.push("invalid value for 'display_right_to_left', display_right_to_left cannot be nil.")
  end
  if @display_zeros.nil?
      invalid_properties.push("invalid value for 'display_zeros', display_zeros cannot be nil.")
  end
  if @first_visible_column.nil?
      invalid_properties.push("invalid value for 'first_visible_column', first_visible_column cannot be nil.")
  end
  if @first_visible_row.nil?
      invalid_properties.push("invalid value for 'first_visible_row', first_visible_row cannot be nil.")
  end
  if @name.nil?
      invalid_properties.push("invalid value for 'name', name cannot be nil.")
  end
  if @index.nil?
      invalid_properties.push("invalid value for 'index', index cannot be nil.")
  end
  if @is_gridlines_visible.nil?
      invalid_properties.push("invalid value for 'is_gridlines_visible', is_gridlines_visible cannot be nil.")
  end
  if @is_outline_shown.nil?
      invalid_properties.push("invalid value for 'is_outline_shown', is_outline_shown cannot be nil.")
  end
  if @is_page_break_preview.nil?
      invalid_properties.push("invalid value for 'is_page_break_preview', is_page_break_preview cannot be nil.")
  end
  if @is_visible.nil?
      invalid_properties.push("invalid value for 'is_visible', is_visible cannot be nil.")
  end
  if @is_protected.nil?
      invalid_properties.push("invalid value for 'is_protected', is_protected cannot be nil.")
  end
  if @is_row_column_headers_visible.nil?
      invalid_properties.push("invalid value for 'is_row_column_headers_visible', is_row_column_headers_visible cannot be nil.")
  end
  if @is_ruler_visible.nil?
      invalid_properties.push("invalid value for 'is_ruler_visible', is_ruler_visible cannot be nil.")
  end
  if @is_selected.nil?
      invalid_properties.push("invalid value for 'is_selected', is_selected cannot be nil.")
  end
  if @tab_color.nil?
      invalid_properties.push("invalid value for 'tab_color', tab_color cannot be nil.")
  end
  if @transition_entry.nil?
      invalid_properties.push("invalid value for 'transition_entry', transition_entry cannot be nil.")
  end
  if @transition_evaluation.nil?
      invalid_properties.push("invalid value for 'transition_evaluation', transition_evaluation cannot be nil.")
  end
  if @type.nil?
      invalid_properties.push("invalid value for 'type', type cannot be nil.")
  end
  if @view_type.nil?
      invalid_properties.push("invalid value for 'view_type', view_type cannot be nil.")
  end
  if @visibility_type.nil?
      invalid_properties.push("invalid value for 'visibility_type', visibility_type cannot be nil.")
  end
  if @zoom.nil?
      invalid_properties.push("invalid value for 'zoom', zoom cannot be nil.")
  end
  if @cells.nil?
      invalid_properties.push("invalid value for 'cells', cells cannot be nil.")
  end
  if @charts.nil?
      invalid_properties.push("invalid value for 'charts', charts cannot be nil.")
  end
  if @auto_shapes.nil?
      invalid_properties.push("invalid value for 'auto_shapes', auto_shapes cannot be nil.")
  end
  if @ole_objects.nil?
      invalid_properties.push("invalid value for 'ole_objects', ole_objects cannot be nil.")
  end
  if @comments.nil?
      invalid_properties.push("invalid value for 'comments', comments cannot be nil.")
  end
  if @pictures.nil?
      invalid_properties.push("invalid value for 'pictures', pictures cannot be nil.")
  end
  if @merged_cells.nil?
      invalid_properties.push("invalid value for 'merged_cells', merged_cells cannot be nil.")
  end
  if @validations.nil?
      invalid_properties.push("invalid value for 'validations', validations cannot be nil.")
  end
  if @conditional_formattings.nil?
      invalid_properties.push("invalid value for 'conditional_formattings', conditional_formattings cannot be nil.")
  end
  if @hyperlinks.nil?
      invalid_properties.push("invalid value for 'hyperlinks', hyperlinks cannot be nil.")
  end

  return invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



546
547
548
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 546

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



552
553
554
555
556
557
558
559
560
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 552

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    next if value.nil?
    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



540
541
542
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 540

def to_s
  to_hash.to_s
end

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
# File 'lib/aspose_cells_cloud/models/worksheet.rb', line 388

def valid?
  return false if @links.nil?
  return false if @display_right_to_left.nil?
  return false if @display_zeros.nil?
  return false if @first_visible_column.nil?
  return false if @first_visible_row.nil?
  return false if @name.nil?
  return false if @index.nil?
  return false if @is_gridlines_visible.nil?
  return false if @is_outline_shown.nil?
  return false if @is_page_break_preview.nil?
  return false if @is_visible.nil?
  return false if @is_protected.nil?
  return false if @is_row_column_headers_visible.nil?
  return false if @is_ruler_visible.nil?
  return false if @is_selected.nil?
  return false if @tab_color.nil?
  return false if @transition_entry.nil?
  return false if @transition_evaluation.nil?
  return false if @type.nil?
  return false if @view_type.nil?
  return false if @visibility_type.nil?
  return false if @zoom.nil?
  return false if @cells.nil?
  return false if @charts.nil?
  return false if @auto_shapes.nil?
  return false if @ole_objects.nil?
  return false if @comments.nil?
  return false if @pictures.nil?
  return false if @merged_cells.nil?
  return false if @validations.nil?
  return false if @conditional_formattings.nil?
  return false if @hyperlinks.nil?
  return true
end