Class: DynamicPDFApi::MultiSelectListBoxInformation
- Inherits:
-
Object
- Object
- DynamicPDFApi::MultiSelectListBoxInformation
- Defined in:
- lib/ruby_client/MultiSelectListBoxInformation.rb
Overview
Represents information of a MultiSelectListBox.
Instance Attribute Summary collapse
-
#default_values ⇒ Object
Gets or sets a collection of default values of the MultiSelectListBox.
-
#export_values ⇒ Object
Gets or sets a collection of export values of the MultiSelectListBox.
-
#items ⇒ Object
Gets or sets a collection of items of the MultiSelectListBox.
-
#items_export_values ⇒ Object
Gets or sets a collection of export values of the MultiSelectListBox.
-
#name ⇒ Object
Gets or Sets the name of a MultiSelectListBox.
-
#values ⇒ Object
Gets or sets a collection of values of the MultiSelectListBox.
Instance Method Summary collapse
-
#initialize ⇒ MultiSelectListBoxInformation
constructor
A new instance of MultiSelectListBoxInformation.
Constructor Details
#initialize ⇒ MultiSelectListBoxInformation
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_values ⇒ Object
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_values ⇒ Object
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 |
#items ⇒ Object
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_values ⇒ Object
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 |
#name ⇒ Object
Gets or Sets the name of a MultiSelectListBox.
18 19 20 |
# File 'lib/ruby_client/MultiSelectListBoxInformation.rb', line 18 def name @name end |
#values ⇒ Object
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 |