Class OptionInt
Option base class with an int as value.
Inheritance
System.Object
OptionInt
Assembly: Trimmer.dll
Syntax
public abstract class OptionInt : Option<int>
Properties
|
Improve this Doc
View Source
MaxValue
The maximum value of the int (must be set together with MinValue).
Declaration
public int? MaxValue { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
|
Improve this Doc
View Source
MinValue
The minimum value of the int (must be set together with MaxValue).
Declaration
public int? MinValue { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
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 int Parse(string input)
Parameters
Type |
Name |
Description |
System.String |
input |
|
Returns
Type |
Description |
System.Int32 |
|
Overrides
sttz.Trimmer.Option<System.Int32>.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(Int32)
Declaration
public override string Save(int input)
Parameters
Type |
Name |
Description |
System.Int32 |
input |
|
Returns
Type |
Description |
System.String |
|
Overrides
sttz.Trimmer.Option<System.Int32>.Save(System.Int32)