Share via


caption Attribute (action Element)

Specifies a label for the button in the Workflow task pane corresponding to the action element.

Type

  xsf:xdHWSCaption

Parent Elements

Element Description
action Contains the information for an action.

Definition

  <xsd:attribute name="caption" type="xsf:xdHWSCaption" use="optional" ></xsd:attribute>

Remarks

The caption attribute is an optional attribute of the action element.

If a caption is not specified, the value of the name attribute will be used as the caption for the button in the Workflow task pane.

The caption attribute is also used to extend an activity flow.

Example

The following is an example of the caption attribute as it is used in the action element:

  <xsf:hwsWorkflow taskpaneVisible="yes">
   <xsf:location url="http://www.contoso.com/hwsservice/hwsservice.asmx" />
   <xsf:allowedActions>
      <xsf:action name="approval" actionTypeID="123" 
         canInitiateWorkflow="yes" caption="Get Approval" />
      <xsf:action name="delegate" actionTypeID="234"   
         canInitiateWorkflow="no" caption="Delegate" />
   </xsf:allowedActions>
   <xsf:allowedTasks>
      <xsf:task name="getManagerApproval" taskTypeID="435" 
         caption="Send Response" />
      <xsf:task name="getVPApproval" taskTypeID="436"  
         caption ="Send Response" />
      <xsf:task name="delegateToManager" taskTypeID="420" 
         caption="Respond" />
   </xsf:allowedTasks>
</xsf:hwsWorkflow>

<xsf:hwsAdapter name="Start Approval"
wsdlUrl="http://www.contoso.com/hwsservice/hwsservice.asmx?WSDL" submitAllowed="yes" queryAllowed="no"> <xsf:hwsOperation type="addActionToNewActivityFlow" typeID="{guid}" serviceUrl="http://www.contoso.com/hwsservice/hwsservice.asmx"> <xsf:input source="HWSMessage1.xml"> <xsf:partFragment match="/ns1:HWSMessage/ActionSection/param1" replaceWith="/my:myFields/my:param1" /> <xsf:partFragment match="/ns1:HWSMessage/ActionSection/param2" replaceWith="/a:some/b:thing" dataObject="Aux1"/> </xsf:input> </xsf:hwsOperation> </xsf:hwsAdapter>