Sdílet prostřednictvím


_XDocument3.GetWorkflowTemplates-Methode

Ruft einen Verweis auf die Microsoft.Office.Core.WorkflowTemplates-Auflistung des aktuellen Formulars ab.

Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)

Syntax

'Declaration
<DispIdAttribute(53)> _
Function GetWorkflowTemplates As Object
'Usage
Dim instance As _XDocument3
Dim returnValue As Object

returnValue = instance.GetWorkflowTemplates
[DispIdAttribute(53)] 
Object GetWorkflowTemplates ()

Rückgabewert

Eine Microsoft.Office.Core.WorkflowTemplates-Auflistung, in der alle Microsoft.Office.Core.WorkflowTemplate-Objekte des aktuellen Formulars enthalten sind.

Hinweise

HinweisWichtig:

Sie müssen für die zu verwendende GetWorkFlowTemplates-Methode einen Verweis auf die Microsoft Office 12.0-Objektbibliothek erstellen (in Microsoft Visual Studio Tools für Anwendungen (VSTA) oder in Visual Studio auf der Registerkarte COM im Dialogfeld Verweis hinzufügen). Auf diese Weise wird ein Verweis auf den Microsoft.Office.Core-Namespace erstellt, der die WorkflowTemplates-Klasse enthält.

Beispiel

Im folgenden Beispiel wird die GetWorkflowTemplates-Methode verwendet, um anzuzeigen, wie viele Workflowvorlagen dem aktuellen Formular zugeordnet sind.

Dieses Beispiel erfordert eine using- oder Imports-Direktive für den Microsoft.Office.Core-Namespace im Deklarationsabschnitt des Formularcodemoduls.

_XDocument3 thisDoc = (_XDocument3)thisXDocument;
WorkflowTemplates myWorkflowTemplates = 
   (WorkflowTemplates)thisDoc.GetWorkflowTemplates();

int workflowTemplatesCount = myWorkflowTemplates.Count;

thisXDocument.UI.Alert("Get " + workflowTemplatesCount.ToString() + " 
   workflow templates.");
Dim thisDoc As _XDocument3 = DirectCast(_
   thisXDocument, _XDocument3)
Dim myWorkflowTemplates As WorkflowTemplates = _
   DirectCast(thisDoc.GetWorkflowTemplates(), WorkflowTemplates)

Dim workflowTemplatesCount As Integer = myWorkflowTemplates.Count

thisXDocument.UI.Alert("Get " & workflowTemplatesCount.ToString() & " _
   workflow templates.")

Siehe auch

Referenz

_XDocument3-Schnittstelle
_XDocument3-Member
Microsoft.Office.Interop.InfoPath-Namespace