_XDocument3.GetWorkflowTemplates メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在のフォームの Microsoft.Office.Core.WorkflowTemplates コレクションへの参照を取得します。
public:
System::Object ^ GetWorkflowTemplates();
public object GetWorkflowTemplates ();
abstract member GetWorkflowTemplates : unit -> obj
Public Function GetWorkflowTemplates () As Object
戻り値
現在のフォームの Microsoft.Office.Core.WorkflowTemplates オブジェクトを含んでいる Microsoft.Office.Core.WorkflowTemplate コレクション。
例
次の例では、GetWorkflowTemplates メソッドを使用して、現在のフォームに関連付けられたワークフロー テンプレートの数を表示します。
この例を使用するには、フォーム コード モジュールの宣言セクションに Microsoft.Office.Core 名前空間の using または Imports ディレクティブが必要です。
_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.")
次の例では、GetWorkflowTemplates メソッドを使用して、現在のフォームに関連付けられたワークフロー テンプレートの数を表示します。
この例を使用するには、フォーム コード モジュールの宣言セクションに Microsoft.Office.Core 名前空間の using または Imports ディレクティブが必要です。
_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.")
注釈
重要: GetWorkFlowTemplates メソッドを機能させるには、(Visual Studio 2012 または Visual Studio の [参照の追加] ダイアログ ボックスの [COM] タブから) Microsoft Office 14.0 オブジェクト ライブラリへの参照を確立する必要があります。 それによって、WorkflowTemplates クラスを含む Microsoft.Office.Core 名前空間への参照が設定されます。