Helper.CustomLookupInt Method (WorkflowContext, String, SPItemKey, String)
Retrieves a Int32 value from a field for a specific list and list item.
Namespace: Microsoft.SharePoint.WorkflowActions
Assembly: Microsoft.SharePoint.WorkflowActions (in Microsoft.SharePoint.WorkflowActions.dll)
Syntax
'Declaration
Public Shared Function CustomLookupInt ( _
context As WorkflowContext, _
listId As String, _
listItem As SPItemKey, _
fieldName As String _
) As Integer
'Usage
Dim context As WorkflowContext
Dim listId As String
Dim listItem As SPItemKey
Dim fieldName As String
Dim returnValue As Integer
returnValue = Helper.CustomLookupInt(context, _
listId, listItem, fieldName)
public static int CustomLookupInt(
WorkflowContext context,
string listId,
SPItemKey listItem,
string fieldName
)
Parameters
context
Type: Microsoft.SharePoint.WorkflowActions.WorkflowContextA WorkflowContext object that contains properties that are associated with the active workflow instance.
listId
Type: System.StringA string value representing the GUID of the list. This value may also be the list display name.
listItem
Type: Microsoft.SharePoint.Workflow.SPItemKeyAn integer that represents a specific list item.
fieldName
Type: System.StringA string representing a specific field name on the list.
Return Value
Type: System.Int32
The 32-bit integer value for the field.