Jump to: navigation, search

Difference between revisions of "Template:Activity/Preload"


(Created page with "<Descriptive text goes here...> = Description = {{ActivityInfoBox | title = Invoke Workflow | name = InvokeWorkflow | image = | imagecaption = Activity InvokeWorkflow | purp...")
 
m
 
(16 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
= Description =
 
= Description =
 
{{ActivityInfoBox
 
{{ActivityInfoBox
| title = Invoke Workflow
+
| title = <ActivityTitle>
| name = InvokeWorkflow
+
| name = <ActivityName>
 
| image =  
 
| image =  
| imagecaption = Activity InvokeWorkflow
+
| imagecaption = Activity <ActivityName>
| purpose = Invoke a workflow
+
| purpose = <Purpose>
| category = Control Flow
+
| category = <UBIK Workflow Category>
| returns = True if successful
+
| returns = <Return value>
| version = 2.1.14+
+
| version = <available from version>+
 
}}
 
}}
  
Line 18: Line 18:
 
! Argument !! Type !! Direction !! Purpose  
 
! Argument !! Type !! Direction !! Purpose  
 
|- align="left"
 
|- align="left"
| Workflow|| [[Workflow]]|| In || The {{UBIK}} workflow object to invoke
+
| <argument name> || {{DataType}} || In || <argument description>
 
|- align="left"
 
|- align="left"
| WorkflowName|| {{String_MSDN}}|| In || The name of the workflow to invoke, overrules the ''Workflow'' argument if set
+
| <argument name> || {{DataType}} || In || <argument description>
 
|- align="left"
 
|- align="left"
| UBIKObject|| [[BaseClass]] || In || A valid object; this argument is mandatory if ''WorkflowName'' is used
+
| <argument name> || {{DataType}} || In || <argument description>
 +
|- align="left"
 +
| <argument name> || {{DataType}} || In || <argument description>
 
|}
 
|}
  
Line 33: Line 35:
 
! Argument!! Value
 
! Argument!! Value
 
|- align="left"
 
|- align="left"
| WorkflowName|| <source lang = "vbnet">"WFICON"</source>
+
| argument || example of value
|- align="left"
+
| UBIKObject|| Connect this argument with a variable
+
|- align="left"
+
| VerboseErrors|| <source lang = "vbnet">True</source>
+
|- align="left"
+
| InArguments|| <source lang = "vbnet">New System.Collections.Generic.Dictionary(Of String, object) _
+
From {{"UBIKObject", UBIKObject}}</source>
+
 
|- align="left"
 
|- align="left"
| OutArguments || connect this argument with a variable of type <source lang = "vbnet">IDictionary(String, object)</source> and access the value via <source lang = "vbnet">outArgs("keyName")</source>
+
| argument || example of value
 
|}
 
|}
  
{{ActivityClose}}
+
<!-- DO NOT REMOVE THIS -->{{Template:Activity/End}}<!-- DO NOT REMOVE THIS -->
  
 
==See also==
 
==See also==
 
* [[Workflow Designer]]
 
* [[Workflow Designer]]
* [[Activity:InvokeInterface (Activity)]]
 
  
[[Category:Activities]]
+
<includeonly>[[Category:Activities]]</includeonly>

Latest revision as of 08:37, 15 February 2016

<Descriptive text goes here...>

[edit]

Description

<ActivityTitle>
Name <ActivityName>
Purpose <Purpose>
Category <UBIK Workflow Category>
Returns <Return value>
Version <available from version>+

Arguments

Argument Type Direction Purpose
<argument name> DataType In <argument description>
<argument name> DataType In <argument description>
<argument name> DataType In <argument description>
<argument name> DataType In <argument description>

Usage

<Shortly describe how to use the activity ...>

Example

Argument Value
argument example of value
argument example of value


See also