UInt32.Clamp(UInt32, UInt32, UInt32) Methode

Definition

Klemmt einen Wert auf einen inklusiven Minimal- und Höchstwert.

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

Parameter

value
UInt32

Der zu klemmende Wert.

min
UInt32

Das inklusive Minimum, auf das value klammern soll.

max
UInt32

Das inklusive Maximum, auf das value klammern soll.

Gibt zurück

Das Ergebnis der Klemmung value an den inklusiven Bereich von min und max.

Implementiert

Gilt für: