Helper.ToDouble Method
Converts a specified value into a double data type.
Namespace: Microsoft.SharePoint.WorkflowActions
Assembly: Microsoft.SharePoint.WorkflowActions (in Microsoft.SharePoint.WorkflowActions.dll)
Syntax
'Declaration
Public Shared Function ToDouble ( _
context As WorkflowContext, _
val As Object _
) As Double
'Usage
Dim context As WorkflowContext
Dim val As Object
Dim returnValue As Double
returnValue = Helper.ToDouble(context, _
val)
public static double ToDouble(
WorkflowContext context,
Object val
)
Parameters
context
Type: Microsoft.SharePoint.WorkflowActions.WorkflowContextA WorkflowContext object that represents a workflow context.
val
Type: System.ObjectAn object that contains the value to be converted.
Return Value
Type: System.Double
The specified value converted to a double data type.