Class: DynamicPDFApi::MultiSelectListBoxInformation

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby_client/MultiSelectListBoxInformation.rb

Overview

Represents information of a MultiSelectListBox.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeMultiSelectListBoxInformation

Returns a new instance of MultiSelectListBoxInformation.



6
7
8
9
10
11
12
13
# File 'lib/ruby_client/MultiSelectListBoxInformation.rb', line 6

def initialize
  @name = nil
  @values = {}
  @default_values = {}
  @export_values = {}
  @items = {}
  @items_export_values = {}
end

Instance Attribute Details

#default_valuesObject

Gets or sets a collection of default values of the MultiSelectListBox.



28
29
30
# File 'lib/ruby_client/MultiSelectListBoxInformation.rb', line 28

def default_values
  @default_values
end

#export_valuesObject

Gets or sets a collection of export values of the MultiSelectListBox.



33
34
35
# File 'lib/ruby_client/MultiSelectListBoxInformation.rb', line 33

def export_values
  @export_values
end

#itemsObject

Gets or sets a collection of items of the MultiSelectListBox.



38
39
40
# File 'lib/ruby_client/MultiSelectListBoxInformation.rb', line 38

def items
  @items
end

#items_export_valuesObject

Gets or sets a collection of export values of the MultiSelectListBox.



43
44
45
# File 'lib/ruby_client/MultiSelectListBoxInformation.rb', line 43

def items_export_values
  @items_export_values
end

#nameObject

Gets or Sets the name of a MultiSelectListBox.



18
19
20
# File 'lib/ruby_client/MultiSelectListBoxInformation.rb', line 18

def name
  @name
end

#valuesObject

Gets or sets a collection of values of the MultiSelectListBox.



23
24
25
# File 'lib/ruby_client/MultiSelectListBoxInformation.rb', line 23

def values
  @values
end