UInt32.Clamp(UInt32, UInt32, UInt32) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.