RanorexNetRanorexNet Documentation
Start Method (command)
NamespacesRanorexApplicationStart(String)
This function is used to start a new program.
Declaration Syntax
C#Visual BasicVisual C++
[ObsoleteAttribute("Use the System.Diagnostics.Process.Start method instead.")]
public static int Start(
	string command
)
<ObsoleteAttribute("Use the System.Diagnostics.Process.Start method instead.")> _
Public Shared Function Start ( _
	command As String _
) As Integer
[ObsoleteAttribute(L"Use the System.Diagnostics.Process.Start method instead.")]
public:
static int Start(
	String^ command
)
Parameters
command (String)
Command with arguments.
Return Value
The function returns 0 if successful, or an errorcode otherwise.
Remarks
It creates a new process and its primary thread. The new process executes the specified executable file with the submitted arguments.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown when command is null.
CommandFailedExceptionThrown when the operation cannot be processed.

Assembly: RanorexNet (Module: RanorexNet) Version: 1.5.1.4524