Class OptionFloat
Option base class with a float as value.
Inheritance
System.Object
OptionFloat
Assembly: Trimmer.dll
Syntax
public abstract class OptionFloat : Option<float>
Properties
|
Improve this Doc
View Source
MaxValue
The maximum value of the float (must be set together with MinValue).
Declaration
public float? MaxValue { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Single> |
|
|
Improve this Doc
View Source
MinValue
The minimum value of the float (must be set together with MaxValue).
Declaration
public float? MinValue { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Single> |
|
Methods
|
Improve this Doc
View Source
EditGUI()
Declaration
public override bool EditGUI()
Returns
Type |
Description |
System.Boolean |
|
Overrides
|
Improve this Doc
View Source
Load(String)
Declaration
public override void Load(string input)
Parameters
Type |
Name |
Description |
System.String |
input |
|
Overrides
|
Improve this Doc
View Source
Parse(String)
Declaration
public override float Parse(string input)
Parameters
Type |
Name |
Description |
System.String |
input |
|
Returns
Type |
Description |
System.Single |
|
Overrides
sttz.Trimmer.Option<System.Single>.Parse(System.String)
|
Improve this Doc
View Source
Save()
Declaration
public override string Save()
Returns
Type |
Description |
System.String |
|
Overrides
|
Improve this Doc
View Source
Save(Single)
Declaration
public override string Save(float input)
Parameters
Type |
Name |
Description |
System.Single |
input |
|
Returns
Type |
Description |
System.String |
|
Overrides
sttz.Trimmer.Option<System.Single>.Save(System.Single)