Overload List
Overload 1: function CheckRange(const Low: Char; const X: Char; const High: Char): Boolean;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Low | Char | |
| 2 | X | Char | |
| 3 | High | Char |
Returns: Boolean
Overload 2: function CheckRange(const Low: Double; const X: Double; const High: Double): Boolean;
Check the value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Low | Double | |
| 2 | X | Double | |
| 3 | High | Double |
Returns: Boolean - true if X is bigger or equal then Low and smaller or equal then High.
Overload 3: function CheckRange(const Low: Integer; const X: Integer; const High: Integer): Boolean;
Check the value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Low | Integer | |
| 2 | X | Integer | |
| 3 | High | Integer |
Returns: Boolean
Remarks:
Parameters can be integers.
Overload 4: function CheckRange(const Low: Int64; const X: Int64; const High: Int64): Boolean;
Check the value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Low | Int64 | |
| 2 | X | Int64 | |
| 3 | High | Int64 |
Returns: Boolean
Remarks:
Parameters can be integers.
Overload 5: function CheckRangef(const Low: Single; const X: Single; const High: Single): Boolean;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Low | Single | |
| 2 | X | Single | |
| 3 | High | Single |
Returns: Boolean