Struct Threshold
Specifies the threshold.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public struct Threshold : IEquatable<Threshold>
Constructors
Threshold(Double, Double)
Initializes a new instance of the Threshold struct.
Declaration
public Threshold(double minimum, double maximum)
Parameters
System.Double
minimum
The minimum value of the threshold. |
System.Double
maximum
The maximum value of the threshold. |
Properties
Maximum
Gets or sets the maximum value for threshold.
Declaration
public double Maximum { get; }
Property Value
System.Double
|
Minimum
Gets or sets the minimum value for threshold.
Declaration
public double Minimum { get; }
Property Value
System.Double
|
Methods
Equals(Object)
Indicates whether the current threshold is equal to another threshold.
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
|
Returns
System.Boolean
|
Overrides
Equals(Threshold)
Indicates whether the current threshold is equal to another threshold.
Declaration
public bool Equals(Threshold other)
Parameters
Threshold
other
|
Returns
System.Boolean
|
Implements
Operators
Equality(Threshold, Threshold)
Indicates whether the current threshold is equal to another threshold.
Declaration
public static bool operator ==(Threshold left, Threshold right)
Parameters
Threshold
left
|
Threshold
right
|
Returns
System.Boolean
|
Inequality(Threshold, Threshold)
Indicates whether the current threshold is not equal to another threshold.
Declaration
public static bool operator !=(Threshold left, Threshold right)
Parameters
Threshold
left
|
Threshold
right
|
Returns
System.Boolean
|