ParameterValue Operators
Contains data passed to the function or returned.| Name | Description |
|---|---|
| Equality(ParameterValue, ParameterValue) static | Compares two ParameterValue objects for equality. |
| Implicit(CellValue to ParameterValue) static | Implicitly converts a cell value to a parameter value. |
| Implicit(CellValue[,] to ParameterValue) static | Implicitly converts an array of cell values to a ParameterValue. |
| Implicit(Boolean to ParameterValue) static | Implicitly converts a Boolean value to a parameter value. |
| Implicit(Char to ParameterValue) static | Implicitly converts a Char value to a parameter value. |
| Implicit(DateTime to ParameterValue) static | Implicitly converts a DateTime object to a parameter value. |
| Implicit(Decimal to ParameterValue) static | Implicitly converts a Decimal value to a parameter value. |
| Implicit(Double to ParameterValue) static | Implicitly converts a Double value to a parameter value. |
| Implicit(Int32 to ParameterValue) static | Implicitly converts an Int32 value to a parameter value. |
| Implicit(Single to ParameterValue) static | Implicitly converts a Single value to a parameter value. |
| Implicit(String to ParameterValue) static | Implicitly converts a String value to a parameter value. |
| Inequality(ParameterValue, ParameterValue) static | Compares two ParameterValue objects to determine whether they are not equal. |
See Also