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

Definição

Fixa um valor a um valor mínimo e máximo inclusivo.

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

O valor a ser fixado.

min
UInt32

O mínimo inclusivo ao qual value deve fixar.

max
UInt32

O máximo inclusivo ao qual value deve fixar.

Retornos

O resultado da fixação value ao intervalo inclusivo de min e max.

Implementações

Aplica-se a