Method: AsposeCellsCloud::ListObject#list_invalid_properties

Defined in:
lib/aspose_cells_cloud/models/list_object.rb

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properies with the reasons



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
281
282
283
284
# File 'lib/aspose_cells_cloud/models/list_object.rb', line 214

def list_invalid_properties
  invalid_properties = Array.new
  if @auto_filter.nil?
      invalid_properties.push("invalid value for 'auto_filter', auto_filter cannot be nil.")
  end
  if @display_name.nil?
      invalid_properties.push("invalid value for 'display_name', display_name cannot be nil.")
  end
  if @start_column.nil?
      invalid_properties.push("invalid value for 'start_column', start_column cannot be nil.")
  end
  if @start_row.nil?
      invalid_properties.push("invalid value for 'start_row', start_row cannot be nil.")
  end
  if @end_column.nil?
      invalid_properties.push("invalid value for 'end_column', end_column cannot be nil.")
  end
  if @end_row.nil?
      invalid_properties.push("invalid value for 'end_row', end_row cannot be nil.")
  end
  if @list_columns.nil?
      invalid_properties.push("invalid value for 'list_columns', list_columns cannot be nil.")
  end
  if @show_header_row.nil?
      invalid_properties.push("invalid value for 'show_header_row', show_header_row cannot be nil.")
  end
  if @show_table_style_column_stripes.nil?
      invalid_properties.push("invalid value for 'show_table_style_column_stripes', show_table_style_column_stripes cannot be nil.")
  end
  if @show_table_style_first_column.nil?
      invalid_properties.push("invalid value for 'show_table_style_first_column', show_table_style_first_column cannot be nil.")
  end
  if @show_table_style_last_column.nil?
      invalid_properties.push("invalid value for 'show_table_style_last_column', show_table_style_last_column cannot be nil.")
  end
  if @show_table_style_row_stripes.nil?
      invalid_properties.push("invalid value for 'show_table_style_row_stripes', show_table_style_row_stripes cannot be nil.")
  end
  if @show_totals.nil?
      invalid_properties.push("invalid value for 'show_totals', show_totals cannot be nil.")
  end
  if @table_style_name.nil?
      invalid_properties.push("invalid value for 'table_style_name', table_style_name cannot be nil.")
  end
  if @table_style_type.nil?
      invalid_properties.push("invalid value for 'table_style_type', table_style_type cannot be nil.")
  end
  if @data_range.nil?
      invalid_properties.push("invalid value for 'data_range', data_range cannot be nil.")
  end
  if @data_source_type.nil?
      invalid_properties.push("invalid value for 'data_source_type', data_source_type cannot be nil.")
  end
  if @comment.nil?
      invalid_properties.push("invalid value for 'comment', comment cannot be nil.")
  end
  if @xml_map.nil?
      invalid_properties.push("invalid value for 'xml_map', xml_map cannot be nil.")
  end
  if @alternative_text.nil?
      invalid_properties.push("invalid value for 'alternative_text', alternative_text cannot be nil.")
  end
  if @alternative_description.nil?
      invalid_properties.push("invalid value for 'alternative_description', alternative_description cannot be nil.")
  end
  if @link.nil?
      invalid_properties.push("invalid value for 'link', link cannot be nil.")
  end

  return invalid_properties
end