Method: AsposePdfCloud::ChoiceField#==

Defined in:
lib/aspose_pdf_cloud/models/choice_field.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
# File 'lib/aspose_pdf_cloud/models/choice_field.rb', line 273

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      links == o.links &&
      partial_name == o.partial_name &&
      full_name == o.full_name &&
      rect == o.rect &&
      value == o.value &&
      page_index == o.page_index &&
      height == o.height &&
      width == o.width &&
      z_index == o.z_index &&
      is_group == o.is_group &&
      parent == o.parent &&
      is_shared_field == o.is_shared_field &&
      flags == o.flags &&
      color == o.color &&
      contents == o.contents &&
      margin == o.margin &&
      highlighting == o.highlighting &&
      horizontal_alignment == o.horizontal_alignment &&
      vertical_alignment == o.vertical_alignment &&
      border == o.border &&
      multi_select == o.multi_select &&
      selected == o.selected
end