NumericOption(String, String, Int32, Double, Double, Double, Int32) Constructor |
Initializes a new object of type NumericOption with the given name, caption, sorting index and advanced properties.
Namespace: RelaxIS_SDK.Wizard.WizardOptionsAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public NumericOption(
string Name,
string Caption,
int DisplayIndex,
double DefaultValue,
double Minimum,
double Maximum,
int Width
)
Public Sub New (
Name As String,
Caption As String,
DisplayIndex As Integer,
DefaultValue As Double,
Minimum As Double,
Maximum As Double,
Width As Integer
)
Dim Name As String
Dim Caption As String
Dim DisplayIndex As Integer
Dim DefaultValue As Double
Dim Minimum As Double
Dim Maximum As Double
Dim Width As Integer
Dim instance As New NumericOption(Name, Caption,
DisplayIndex, DefaultValue, Minimum,
Maximum, Width)
Parameters
- Name String
- The internal name of this option
- Caption String
- The caption of the created numeric input box
- DisplayIndex Int32
- The index of this option in the settings dialog
- DefaultValue Double
- The default value in the input box
- Minimum Double
- The minimum possible number in the input box
- Maximum Double
- The maximum possible number in the input box
- Width Int32
- The width of the input box
See Also