_XDocument4.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 指令。
_XDocument4 thisDoc = (_XDocument4)thisXDocument;
WorkflowTemplates myWorkflowTemplates =
(WorkflowTemplates)thisDoc.GetWorkflowTemplates();
int workflowTemplatesCount = myWorkflowTemplates.Count;
thisXDocument.UI.Alert("Get " + workflowTemplatesCount.ToString() + "
workflow templates.");
Dim thisDoc As _XDocument4 = DirectCast(_
thisXDocument, _XDocument4)
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 指令。
_XDocument4 thisDoc = (_XDocument4)thisXDocument;
WorkflowTemplates myWorkflowTemplates =
(WorkflowTemplates)thisDoc.GetWorkflowTemplates();
int workflowTemplatesCount = myWorkflowTemplates.Count;
thisXDocument.UI.Alert("Get " + workflowTemplatesCount.ToString() + "
workflow templates.");
Dim thisDoc As _XDocument4 = DirectCast(_
thisXDocument, _XDocument4)
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) “添加引用”对话框的“COM”选项卡建立对 Microsoft Office 14.0 对象库 (的引用。 这将建立对包含 WorkflowTemplates 类的 Microsoft.Office.Core 命名空间的引用。