Math.Clamp 方法

定義

多載

Clamp(UIntPtr, UIntPtr, UIntPtr)

傳回限制為 minmax 內含範圍的 value

Clamp(UInt64, UInt64, UInt64)

傳回限制為 minmax 內含範圍的 value

Clamp(UInt32, UInt32, UInt32)

傳回限制為 minmax 內含範圍的 value

Clamp(UInt16, UInt16, UInt16)

傳回限制為 minmax 內含範圍的 value

Clamp(Single, Single, Single)

傳回限制為 minmax 內含範圍的 value

Clamp(SByte, SByte, SByte)

傳回限制為 minmax 內含範圍的 value

Clamp(Int64, Int64, Int64)

傳回限制為 minmax 內含範圍的 value

Clamp(Int32, Int32, Int32)

傳回限制為 minmax 內含範圍的 value

Clamp(Int16, Int16, Int16)

傳回限制為 minmax 內含範圍的 value

Clamp(Double, Double, Double)

傳回限制為 minmax 內含範圍的 value

Clamp(Decimal, Decimal, Decimal)

傳回限制為 minmax 內含範圍的 value

Clamp(Byte, Byte, Byte)

傳回限制為 minmax 內含範圍的 value

Clamp(IntPtr, IntPtr, IntPtr)

傳回限制為 minmax 內含範圍的 value

Clamp(UIntPtr, UIntPtr, UIntPtr)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

重要

此 API 不符合 CLS 規範。

傳回限制為 minmax 內含範圍的 value

public:
 static UIntPtr Clamp(UIntPtr value, UIntPtr min, UIntPtr max);
[System.CLSCompliant(false)]
public static nuint Clamp (nuint value, nuint min, nuint max);
[System.CLSCompliant(false)]
public static UIntPtr Clamp (UIntPtr value, UIntPtr min, UIntPtr max);
[<System.CLSCompliant(false)>]
static member Clamp : unativeint * unativeint * unativeint -> unativeint
Public Shared Function Clamp (value As UIntPtr, min As UIntPtr, max As UIntPtr) As UIntPtr

參數

value
UIntPtr

nuint

unativeint

受限的值。

min
UIntPtr

nuint

unativeint

結果的下限。

max
UIntPtr

nuint

unativeint

結果的上限。

傳回

UIntPtr

nuint

unativeint

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

屬性

適用於

Clamp(UInt64, UInt64, UInt64)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

重要

此 API 不符合 CLS 規範。

傳回限制為 minmax 內含範圍的 value

public:
 static System::UInt64 Clamp(System::UInt64 value, System::UInt64 min, System::UInt64 max);
[System.CLSCompliant(false)]
public static ulong Clamp (ulong value, ulong min, ulong max);
[<System.CLSCompliant(false)>]
static member Clamp : uint64 * uint64 * uint64 -> uint64
Public Shared Function Clamp (value As ULong, min As ULong, max As ULong) As ULong

參數

value
UInt64

受限的值。

min
UInt64

結果的下限。

max
UInt64

結果的上限。

傳回

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

屬性

適用於

Clamp(UInt32, UInt32, UInt32)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

重要

此 API 不符合 CLS 規範。

傳回限制為 minmax 內含範圍的 value

public:
 static System::UInt32 Clamp(System::UInt32 value, System::UInt32 min, System::UInt32 max);
[System.CLSCompliant(false)]
public static uint Clamp (uint value, uint min, uint max);
[<System.CLSCompliant(false)>]
static member Clamp : uint32 * uint32 * uint32 -> uint32
Public Shared Function Clamp (value As UInteger, min As UInteger, max As UInteger) As UInteger

參數

value
UInt32

受限的值。

min
UInt32

結果的下限。

max
UInt32

結果的上限。

傳回

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

屬性

適用於

Clamp(UInt16, UInt16, UInt16)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

重要

此 API 不符合 CLS 規範。

傳回限制為 minmax 內含範圍的 value

public:
 static System::UInt16 Clamp(System::UInt16 value, System::UInt16 min, System::UInt16 max);
[System.CLSCompliant(false)]
public static ushort Clamp (ushort value, ushort min, ushort max);
[<System.CLSCompliant(false)>]
static member Clamp : uint16 * uint16 * uint16 -> uint16
Public Shared Function Clamp (value As UShort, min As UShort, max As UShort) As UShort

參數

value
UInt16

受限的值。

min
UInt16

結果的下限。

max
UInt16

結果的上限。

傳回

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

屬性

適用於

Clamp(Single, Single, Single)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

傳回限制為 minmax 內含範圍的 value

public:
 static float Clamp(float value, float min, float max);
public static float Clamp (float value, float min, float max);
static member Clamp : single * single * single -> single
Public Shared Function Clamp (value As Single, min As Single, max As Single) As Single

參數

value
Single

受限的值。

min
Single

結果的下限。

max
Single

結果的上限。

傳回

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

-或-

NaN 如果 value 等於 NaN

適用於

Clamp(SByte, SByte, SByte)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

重要

此 API 不符合 CLS 規範。

傳回限制為 minmax 內含範圍的 value

public:
 static System::SByte Clamp(System::SByte value, System::SByte min, System::SByte max);
[System.CLSCompliant(false)]
public static sbyte Clamp (sbyte value, sbyte min, sbyte max);
[<System.CLSCompliant(false)>]
static member Clamp : sbyte * sbyte * sbyte -> sbyte
Public Shared Function Clamp (value As SByte, min As SByte, max As SByte) As SByte

參數

value
SByte

受限的值。

min
SByte

結果的下限。

max
SByte

結果的上限。

傳回

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

屬性

適用於

Clamp(Int64, Int64, Int64)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

傳回限制為 minmax 內含範圍的 value

public:
 static long Clamp(long value, long min, long max);
public static long Clamp (long value, long min, long max);
static member Clamp : int64 * int64 * int64 -> int64
Public Shared Function Clamp (value As Long, min As Long, max As Long) As Long

參數

value
Int64

受限的值。

min
Int64

結果的下限。

max
Int64

結果的上限。

傳回

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

適用於

Clamp(Int32, Int32, Int32)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

傳回限制為 minmax 內含範圍的 value

public:
 static int Clamp(int value, int min, int max);
public static int Clamp (int value, int min, int max);
static member Clamp : int * int * int -> int
Public Shared Function Clamp (value As Integer, min As Integer, max As Integer) As Integer

參數

value
Int32

受限的值。

min
Int32

結果的下限。

max
Int32

結果的上限。

傳回

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

適用於

Clamp(Int16, Int16, Int16)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

傳回限制為 minmax 內含範圍的 value

public:
 static short Clamp(short value, short min, short max);
public static short Clamp (short value, short min, short max);
static member Clamp : int16 * int16 * int16 -> int16
Public Shared Function Clamp (value As Short, min As Short, max As Short) As Short

參數

value
Int16

受限的值。

min
Int16

結果的下限。

max
Int16

結果的上限。

傳回

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

適用於

Clamp(Double, Double, Double)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

傳回限制為 minmax 內含範圍的 value

public:
 static double Clamp(double value, double min, double max);
public static double Clamp (double value, double min, double max);
static member Clamp : double * double * double -> double
Public Shared Function Clamp (value As Double, min As Double, max As Double) As Double

參數

value
Double

受限的值。

min
Double

結果的下限。

max
Double

結果的上限。

傳回

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

-或-

NaN 如果 value 等於 NaN

適用於

Clamp(Decimal, Decimal, Decimal)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

傳回限制為 minmax 內含範圍的 value

public:
 static System::Decimal Clamp(System::Decimal value, System::Decimal min, System::Decimal max);
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

參數

value
Decimal

受限的值。

min
Decimal

結果的下限。

max
Decimal

結果的上限。

傳回

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

適用於

Clamp(Byte, Byte, Byte)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

傳回限制為 minmax 內含範圍的 value

public:
 static System::Byte Clamp(System::Byte value, System::Byte min, System::Byte max);
public static byte Clamp (byte value, byte min, byte max);
static member Clamp : byte * byte * byte -> byte
Public Shared Function Clamp (value As Byte, min As Byte, max As Byte) As Byte

參數

value
Byte

受限的值。

min
Byte

結果的下限。

max
Byte

結果的上限。

傳回

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

適用於

Clamp(IntPtr, IntPtr, IntPtr)

來源:
Math.cs
來源:
Math.cs
來源:
Math.cs

傳回限制為 minmax 內含範圍的 value

public:
 static IntPtr Clamp(IntPtr value, IntPtr min, IntPtr max);
public static nint Clamp (nint value, nint min, nint max);
public static IntPtr Clamp (IntPtr value, IntPtr min, IntPtr max);
static member Clamp : nativeint * nativeint * nativeint -> nativeint
Public Shared Function Clamp (value As IntPtr, min As IntPtr, max As IntPtr) As IntPtr

參數

value
IntPtr

nint

nativeint

受限的值。

min
IntPtr

nint

nativeint

結果的下限。

max
IntPtr

nint

nativeint

結果的上限。

傳回

IntPtr

nint

nativeint

value 如果 minvaluemax

-或-

如果 value<min,則為 min

-或-

如果 max<value,則為 max

適用於