Method: AsposeCellsCloud::CombinationSourceData#valid?

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

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



138
139
140
141
142
143
144
145
146
147
# File 'lib/aspose_cells_cloud/models/combination_source_data.rb', line 138

def valid?
  return false if @tag.nil?
  return false if @data_source.nil?
  return false if @file_info.nil?
  return false if @worksheet.nil?
  return false if @table_name.nil?
  return false if @cell_area.nil?
  return false if @has_header.nil?
  return true
end