默认元素 (WorkflowInfo)
适用于:SharePoint 2016 |SharePoint Foundation 2013 |SharePoint Online |SharePoint Server 2013
Default 元素是其他元素的容器,并且不包含可定义的属性。
注意
只可以从默认的 WSS.ACTIONS 文件中读取 Default 元素,且不能用自定义 .ACTIONS 文件将其重写。
定义
<Default>
<RuleDesigner>
<FieldBind>
<Option>…</Option>
</FieldBind>
</RuleDesigner>
</Default>
元素和属性
下面各部分介绍了属性、子元素和父元素。
Attributes
属性 |
说明 |
---|---|
**ItemKeyType** |
可选 **text**。 默认对象类型的特定于实现的标识符。 |
子元素
父元素
备注
使用声明性的无代码工作流编辑器(例如 Microsoft SharePoint Designer 2010)创建工作流时,为 。安装在服务器上的 ACTIONS 文件合并为单个项列表,并显示在工作流编辑器中。 Microsoft SharePoint Foundation 2010然后搜索现有的工作流条件。 如果 SharePoint Foundation 2010 发现中的条目未表示的条件。ACTIONS 文件,显示该条件 的默认 元素句子。
示例
下面的 XML 演示如何构建 Default 元素以使其对工作流编辑器可见。
<WorkflowInfo Language="en-us">
<Conditions And="and" Or="or" Not="not" When="If" Else="ElseIf">
<Condition
AppliesTo="list"
Assembly="MyWorkflowProject.Workflow1
PublicKeyToken=71e9bce111e9429c,
Version=1.0.0.0,
Culture=neutral"
ClassName="MyWorkflowProject.Workflow1.MyClass"
FunctionName="IsOrderComplete"
Name="Check if item in %1 is a complete order"
Type="Custom"
UsesCurrentItem="True">
<RuleDesigner>...</RuleDesigner>
</Condition>
<Default>
<RuleDesigner Sentence="the file type is %1">
<FieldBind ID=1 Field="_1_" Text="specific type" DesignerType="Type">
<Option></Option>
</FieldBind>
</RuleDesigner>
</Default
</Conditions>
</WorkflowInfo>