UInt32.Clamp(UInt32, UInt32, UInt32) Método

Definición

Sujeta un valor a un valor mínimo inclusivo y máximo.

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

Parámetros

value
UInt32

Valor que se va a fijar.

min
UInt32

Mínimo inclusivo al que value se debe sujetar.

max
UInt32

Máximo inclusivo al que value debe sujetarse.

Devoluciones

Resultado de la fijación value al intervalo inclusivo de min y max.

Implementaciones

Se aplica a