Edit

Share via


_XDocument4.GetWorkflowTasks Method

Definition

Gets a reference to a Microsoft.Office.Core.WorkflowTasks collection for the current form.

public:
 System::Object ^ GetWorkflowTasks();
public object GetWorkflowTasks ();
abstract member GetWorkflowTasks : unit -> obj
Public Function GetWorkflowTasks () As Object

Returns

A Microsoft.Office.Core.WorkflowTasks collection that contains any Microsoft.Office.Core.WorkflowTask objects for the current form.

Implements

Examples

In the following example, the GetWorkflowTasks method is used to display the count of workflow tasks associated with the current form.

This example requires a using or Imports directive for the Microsoft.Office.Core namespace in the declarations section of the form code module.

_XDocument4 thisDoc = (_XDocument4)thisXDocument;
WorkflowTasks myWorkflowTasks = 
      (WorkflowTasks)thisDoc.GetWorkflowTasks();

int workflowTasksCount = myWorkflowTasks.Count;

thisXDocument.UI.Alert("Get " + workflowTasksCount.ToString() + " 
   workflow tasks.");
Dim thisDoc As _XDocument4 = DirectCast(_
   thisXDocument, _XDocument4)
Dim myWorkflowTasks As WorkflowTasks = _
   DirectCast(thisDoc.GetWorkflowTasks(), WorkflowTasks)

Dim workflowTasksCount As Integer = myWorkflowTasks.Count

thisXDocument.UI.Alert("Get " & workflowTasksCount.ToString() & " _
      workflow tasks.")

In the following example, the GetWorkflowTasks method is used to display the count of workflow tasks associated with the current form.

This example requires a using or Imports directive for the Microsoft.Office.Core namespace in the declarations section of the form code module.

_XDocument4 thisDoc = (_XDocument4)thisXDocument;
WorkflowTasks myWorkflowTasks = 
      (WorkflowTasks)thisDoc.GetWorkflowTasks();

int workflowTasksCount = myWorkflowTasks.Count;

thisXDocument.UI.Alert("Get " + workflowTasksCount.ToString() + " 
   workflow tasks.");
Dim thisDoc As _XDocument4 = DirectCast(_
   thisXDocument, _XDocument4)
Dim myWorkflowTasks As WorkflowTasks = _
   DirectCast(thisDoc.GetWorkflowTasks(), WorkflowTasks)

Dim workflowTasksCount As Integer = myWorkflowTasks.Count

thisXDocument.UI.Alert("Get " & workflowTasksCount.ToString() & " _
      workflow tasks.")

Remarks

Important: For the GetWorkFlowTasks method to work, you must establish a reference to the Microsoft Office 14.0 Object Library (from the COM tab of the Add Reference dialog box in Visual Studio. This will establish a reference to the Microsoft.Office.Core namespace, which contains the WorkflowTasks class.

Applies to