New to Telerik UI for WPFStart a free 30-day trial

Threshold

Struct

Specifies the threshold.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

C#
public struct Threshold : IEquatable<Threshold>

Implements: IEquatable<Threshold>

Inherited Members ValueType.GetHashCode()ValueType.ToString()

Constructors

Initializes a new instance of the Threshold struct.

C#
public Threshold(double minimum, double maximum)
Parameters:minimumdouble

The minimum value of the threshold.

maximumdouble

The maximum value of the threshold.

Properties

Gets or sets the maximum value for threshold.

C#
public readonly double Maximum { get; }

Gets or sets the minimum value for threshold.

C#
public readonly double Minimum { get; }

Methods

Indicates whether the current threshold is equal to another threshold.

C#
public override bool Equals(object obj)
Parameters:objobjectReturns:

bool

Overrides: ValueType.Equals(object)

Indicates whether the current threshold is equal to another threshold.

C#
public bool Equals(Threshold other)
Parameters:otherThresholdReturns:

bool

Implements: IEquatable<Threshold>.Equals(Threshold)

Operators

Indicates whether the current threshold is not equal to another threshold.

C#
public static bool operator !=(Threshold left, Threshold right)
Parameters:leftThresholdrightThresholdReturns:

bool

Indicates whether the current threshold is equal to another threshold.

C#
public static bool operator ==(Threshold left, Threshold right)
Parameters:leftThresholdrightThresholdReturns:

bool