Helper.LookupInt Method (WorkflowContext, String, SPItemKey, String)
Retrieves the integer value of a field for the specified list item.
Namespace: Microsoft.SharePoint.WorkflowActions
Assembly: Microsoft.SharePoint.WorkflowActions (in Microsoft.SharePoint.WorkflowActions.dll)
Syntax
'Declaration
Public Shared Function LookupInt ( _
context As WorkflowContext, _
listIdOrName As String, _
listItem As SPItemKey, _
fieldName As String _
) As Integer
'Usage
Dim context As WorkflowContext
Dim listIdOrName As String
Dim listItem As SPItemKey
Dim fieldName As String
Dim returnValue As Integer
returnValue = Helper.LookupInt(context, _
listIdOrName, listItem, fieldName)
public static int LookupInt(
WorkflowContext context,
string listIdOrName,
SPItemKey listItem,
string fieldName
)
Parameters
context
Type: Microsoft.SharePoint.WorkflowActions.WorkflowContextA workflow context that contains properties that are associated with the active workflow instance.
listIdOrName
Type: System.StringThe GUID or display name of the list.
listItem
Type: Microsoft.SharePoint.Workflow.SPItemKeyThe item in the specified list.
fieldName
Type: System.StringThe name of the field for the specified list item in the specified list from which to retrieve the value.
Return Value
Type: System.Int32
A value that is retrieved from the specified field of the specified list item.
Remarks
This method gets the value of the specified field for the specified item in the list.
This method returns 0 if the field cannot be found.