Decimal.Clamp(Decimal, Decimal, Decimal) Method

Definition

Clamps a value to an inclusive minimum and maximum value.

public:
 static System::Decimal Clamp(System::Decimal value, System::Decimal min, System::Decimal max) = System::Numerics::INumber<System::Decimal>::Clamp;
public static decimal Clamp (decimal value, decimal min, decimal max);
static member Clamp : decimal * decimal * decimal -> decimal
Public Shared Function Clamp (value As Decimal, min As Decimal, max As Decimal) As Decimal

Parameters

value
Decimal

The value to clamp.

min
Decimal

The inclusive minimum to which value should clamp.

max
Decimal

The inclusive maximum to which value should clamp.

Returns

The result of clamping value to the inclusive range of min and max.

Implements

Applies to