Class MinMaxCurrent<T>
Provides minimum, maximum and current values
Inherited Members
Namespace: DuetAPI.ObjectModel
Assembly: DuetAPI.dll
Syntax
public sealed class MinMaxCurrent<T> : ModelObject, IModelObject, ICloneable, INotifyPropertyChanged, INotifyPropertyChanging where T : notnull
Type Parameters
Name | Description |
---|---|
T | ValueType of each property |
Properties
Current
Current value
Declaration
public T Current { get; set; }
Property Value
Type | Description |
---|---|
T |
Max
Maximum value
Declaration
public T Max { get; set; }
Property Value
Type | Description |
---|---|
T |
Min
Minimum value
Declaration
public T Min { get; set; }
Property Value
Type | Description |
---|---|
T |