Click or drag to resize

MultipleChoiceOption Class

Adding an object of this type to a Wizard's option list creates a list of radiobuttons with specific captions as defined in the PossibleAnswers list. The radiobuttons are contained in a groupbox with the caption defined in the constructor.
Inheritance Hierarchy
SystemObject
  RelaxIS_SDK.Wizard.WizardOptionsWizardOptionBase
    RelaxIS_SDK.Wizard.WizardOptionsMultipleChoiceOption

Namespace: RelaxIS_SDK.Wizard.WizardOptions
Assembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax
public class MultipleChoiceOption : WizardOptionBase

The MultipleChoiceOption type exposes the following members.

Constructors
 NameDescription
Public methodMultipleChoiceOption(String, String, Int32) Initializes a new object of type MultipleChoiceOption with the given name, caption and Sorting Index.
Public methodMultipleChoiceOption(String, String, Int32, String, String, Size) Initializes a new object of type MultipleChoiceOption with the given name, caption, sorting index and values.
Top
Properties
 NameDescription
Public propertyCaption The caption that is mainly used to display the option in the Wizard's settings page.
(Inherited from WizardOptionBase)
Public propertyDefaultValue The radiobutton text checked by default
Public propertyDimensions The size of this option's display control in the Wizard dialog.
(Inherited from WizardOptionBase)
Public propertyDisplayIndex The position of this option in the settings list of the Wizard dialog.
(Inherited from WizardOptionBase)
Public propertyName The internal name of the option that can be used to refer to this option in the results.
(Inherited from WizardOptionBase)
Public propertyPossibleAnswers The list of radiobutton texts to create
Public propertySortIndex The internal SortIndex used by the IOrdered interface.
(Inherited from WizardOptionBase)
Public propertyTooltip The tooltip display for this option.
(Inherited from WizardOptionBase)
Top
Methods
 NameDescription
Public methodToCheckboxOption Helper function to get a CheckboxOption from the WizardOptionBase object.
(Inherited from WizardOptionBase)
Public methodToMultipleChoiceOption Helper function to get a MultipleChoiceOption from the WizardOptionBase object.
(Inherited from WizardOptionBase)
Public methodToNumericOption Helper function to get a NumericOption from the WizardOptionBase object.
(Inherited from WizardOptionBase)
Public methodToPositionSelectOption Helper function to get a PositionSelectOption from the WizardOptionBase object.
(Inherited from WizardOptionBase)
Public methodToSubOptionOption Helper function to get a SubOptionOption from the WizardOptionBase object.
(Inherited from WizardOptionBase)
Public methodToTextOption Helper function to get a TextOption from the WizardOptionBase object.
(Inherited from WizardOptionBase)
Top
Remarks
The radiobutton checked by default is defined by the AnswerText in the DefaultValue property.
See Also