Click or drag to resize
ValidationHelperIsInRange Method (Int32, Int32, Int32)
Returns true if value is higher than or equal to minimum and lesser than or equal to maximum.

Namespace: CMS.Helpers
Assembly: CMS.Helpers (in CMS.Helpers.dll) Version: 9.0.0
Syntax
C#
public static bool IsInRange(
	int min,
	int max,
	int value
)

Parameters

min
Type: SystemInt32
Minimum value
max
Type: SystemInt32
Maximum value
value
Type: SystemInt32
Value to check

Return Value

Type: Boolean
See Also