ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel.Validation Namespace / ValidationUtils Class / ValidateDouble Method / ValidateDouble(Double,Double,Double) Method
A System.Double value to validate.
A System.Double value representing the minimum integer allowed.
A System.Double value representing the maximum integer allowed.

In This Topic
    ValidateDouble(Double,Double,Double) Method
    In This Topic
    Validates a double value to make sure it is valid and is within the specified min/max range limit.
    Syntax
    'Declaration
     
    Public Overloads Shared Sub ValidateDouble( _
       ByVal value As Double, _
       ByVal min As Double, _
       ByVal max As Double _
    ) 
    public static void ValidateDouble( 
       double value,
       double min,
       double max
    )

    Parameters

    value
    A System.Double value to validate.
    min
    A System.Double value representing the minimum integer allowed.
    max
    A System.Double value representing the maximum integer allowed.
    Exceptions
    ExceptionDescription
    Throws if the value is out of range limit.
    See Also