SPFieldWorkflowStatus class

Represents a workflow status field.

Inheritance hierarchy

System.Object
  Microsoft.SharePoint.SPField
    Microsoft.SharePoint.SPFieldMultiChoice
      Microsoft.SharePoint.SPFieldChoice
        Microsoft.SharePoint.SPFieldWorkflowStatus

Namespace:  Microsoft.SharePoint
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public Class SPFieldWorkflowStatus _
    Inherits SPFieldChoice
'Usage
Dim instance As SPFieldWorkflowStatus
public class SPFieldWorkflowStatus : SPFieldChoice

Remarks

This class represents a field of type SPFieldType.WorkflowStatus.

When you add a workflow association to a list or content type, a WorkflowStatus field is automatically added to the field collection. You can get an SPFieldWorkflowStatus object that represents the field by calling the GetField(String) method. This method requires a name string as an argument. Pass the value of the Name property of the SPWorkflowAssociation object that you added to the list or content type. The following example demonstrates the technique.

Dim association As SPWorkflowAssociation = _
    SPWorkflowAssociation.CreateListAssociation(template, workflowName, taskList, historyList) 
list.WorkflowAssociations.Add(association)
Dim statusField As SPFieldWorkflowStatus = CType(list.Fields.GetField(association.Name), SPFieldWorkflowStatus)
SPWorkflowAssociation association = 
    SPWorkflowAssociation.CreateListAssociation(template, workflowName, taskList, historyList);
list.WorkflowAssociations.Add(association);
SPFieldWorkflowStatus statusField = list.Fields.GetField(association.Name) as SPFieldWorkflowStatus;

Thread safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See also

Reference

SPFieldWorkflowStatus members

Microsoft.SharePoint namespace

SPFieldType

Other resources

Field Element (List)