MDXValue Explicit Conversion (MDXValue to SByte)
Explicitly converts an MDXValue object to an 8-bit signed integer.
Namespace: Microsoft.AnalysisServices.AdomdServer
Assembly: msmgdsrv (in msmgdsrv.dll)
Syntax
'Declaration
Public Shared Narrowing Operator CType ( _
mpMDXValue As MDXValue _
) As SByte
'Usage
Dim input As MDXValue
Dim output As SByte
output = CType(input, SByte)
public static explicit operator sbyte (
MDXValue mpMDXValue
)
static explicit operator signed char (
MDXValue^ mpMDXValue
)
JScript supports the use of custom casts, but not the declaration of new ones.
Parameters
- mpMDXValue
Type: Microsoft.AnalysisServices.AdomdServer.MDXValue
An MDXValue object.
Return Value
Type: System.SByte
An 8-bit signed integer.
See Also