MDXValue Explicit Conversion (Double to MDXValue)
Explicitly converts a double-precision floating-point number value to an MDXValue object.
Namespace: Microsoft.AnalysisServices.AdomdServer
Assembly: msmgdsrv (in msmgdsrv.dll)
Syntax
'Declaration
Public Shared Narrowing Operator CType ( _
parameter As Double _
) As MDXValue
'Usage
Dim input As Double
Dim output As MDXValue
output = CType(input, MDXValue)
public static explicit operator MDXValue (
double parameter
)
static explicit operator MDXValue^ (
double parameter
)
JScript supports the use of custom casts, but not the declaration of new ones.
Parameters
- parameter
Type: System.Double
A double-precision floating-point number.
Return Value
Type: Microsoft.AnalysisServices.AdomdServer.MDXValue
An MDXValue.
See Also