开发者

Add SharePoint workflow to a list programmatically

开发者 https://www.devze.com 2023-01-11 10:16 出处:网络
We are using SharePoint Foundation 2010. We have created a workflow that checks the status of a task list.

We are using SharePoint Foundation 2010.

We have created a workflow that checks the status of a task list.

If we associate the workflow with the list in the SharePoint UI it works fine.

We were wondering how we could automa开发者_运维问答tically associate it, maybe in the feature receiver code that sets ut the site?


// 1. create an instance of the SPWorkflowAssociation class
SPWorkflowAssociation workflowAssociation =
  SPWorkflowAssociation.CreateListAssociation(workflowTemplate, associationName, taskList, historyList);

// 2. set start options
workflowAssociation.AllowManual = true;
workflowAssociation.AutoStartChange = false;
workflowAssociation.AutoStartCreate = false;

// 3. set additional association options (if any)
workflowAssociation.AssociationData = associationData;

// 4. add workflow association to the list
list.WorkflowAssociations.Add(workflowAssociation);

// 5. enable workflow association, so it is displayed in the user interface
workflowAssociation.Enabled = true;
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号