Difference between revisions of "Activity:OpenExternal (Activity)"
m (moved Activity OpenExternal to OpenExternal (Activity)) |
(→Open image file with explicit application) |
||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | The OpenExternal Activity opens an external document or executable file, also using optional arguments. | ||
+ | |||
+ | =Description= | ||
{{ActivityInfoBox | {{ActivityInfoBox | ||
| title = Open External | | title = Open External | ||
Line 9: | Line 12: | ||
| version = 2.4+ | | version = 2.4+ | ||
}} | }} | ||
− | |||
− | ==Arguments== | + | ===Arguments=== |
{| class="wikitable sortable" | width = "50%" | {| class="wikitable sortable" | width = "50%" | ||
Line 17: | Line 19: | ||
! Argument !! Type !! Direction !! Purpose | ! Argument !! Type !! Direction !! Purpose | ||
|- align="left" | |- align="left" | ||
− | | FileName|| {{ | + | | FileName|| {{String_MSDN}} || In || The path to the executable or the document file. |
|- align="left" | |- align="left" | ||
− | | Arguments|| {{ | + | | Arguments|| {{String_MSDN}}|| In || Additional arguments (optional, used to pass arguments for executable files). |
|- align="left" | |- align="left" | ||
− | | WorkingDirectory|| {{ | + | | WorkingDirectory|| {{String_MSDN}} || In || Working directory (optional, used to specify a working directory for executable files). This value is only used in combination with executable files. |
|- align="left" | |- align="left" | ||
− | | TimeOut|| {{ | + | | TimeOut|| {{Int32_MSDN}} || In || Time out value in seconds (optional, to wait for a maximum amount of time for the invoked process to finish). Leaving this value empty or setting it to 0 means that the workflow continues execution immediately, otherwise the specified amount of seconds will be spent waiting for the process to finish. |
|- align="left" | |- align="left" | ||
− | | Result|| {{ | + | | Result|| {{Boolean_MSDN}}|| Out || true if process successfully finished, false if not |
|} | |} | ||
− | ==Usage== | + | ===Usage=== |
The activity is used to open file documents or executable files during the execution of a workflow. It can be used to open and show documents like Excel files, JPG pictures etc but also to execute a batch file if needed. | The activity is used to open file documents or executable files during the execution of a workflow. It can be used to open and show documents like Excel files, JPG pictures etc but also to execute a batch file if needed. | ||
{{Attention|Opening any (proprietary) document type requires that a corresponding application is available on the machine, for example Microsoft Office for an Excel document.}} | {{Attention|Opening any (proprietary) document type requires that a corresponding application is available on the machine, for example Microsoft Office for an Excel document.}} | ||
− | + | =Examples= | |
===Open an Excel document=== | ===Open an Excel document=== | ||
Show the Excel file ''E:\Results.xlsx'': | Show the Excel file ''E:\Results.xlsx'': | ||
Line 51: | Line 53: | ||
! Argument!! Value | ! Argument!! Value | ||
|- align="left" | |- align="left" | ||
− | | string|| FileName || '' | + | | string|| FileName || ''"C:\Program Files (x86)\IrfanView\i_view32.exe"'' |
|- align="left" | |- align="left" | ||
| string|| Arguments|| ''"E:\Graph.jpg /clipcopy"'' | | string|| Arguments|| ''"E:\Graph.jpg /clipcopy"'' | ||
Line 81: | Line 83: | ||
| string|| TimeOut|| ''30'' | | string|| TimeOut|| ''30'' | ||
|} | |} | ||
+ | |||
+ | <headertabs /> | ||
==See also== | ==See also== | ||
* [[Workflow Designer]] | * [[Workflow Designer]] | ||
− | * [[SaveObject (Activity)]] | + | * [[Activity:SaveObject (Activity)]] |
− | + | [[Category:Activities]] |
Latest revision as of 17:15, 4 March 2015
The OpenExternal Activity opens an external document or executable file, also using optional arguments.