System::Diagnostics::Process::Start method
Contents
[
Hide
]Process::Start() method
Starts process with pre-defined parameters.
bool System::Diagnostics::Process::Start()
See Also
- Class Process
- Namespace System::Diagnostics
- Library Aspose.TeX for C++
Process::Start(const SharedPtr<ProcessStartInfo>&) method
Starts process with specified path and arguments.
static SharedPtr<Process> System::Diagnostics::Process::Start(const SharedPtr<ProcessStartInfo> &start_info)
Parameter | Type | Description |
---|---|---|
start_info | const SharedPtr<ProcessStartInfo>& | Information on process to start. |
ReturnValue
Object attached to newly started process.
See Also
- Typedef SharedPtr
- Class Process
- Class ProcessStartInfo
- Class Process
- Namespace System::Diagnostics
- Library Aspose.TeX for C++
Process::Start(const String&, const String&) method
Starts process with specified path and arguments.
static SharedPtr<Process> System::Diagnostics::Process::Start(const String &filename, const String &arguments=String::Empty)
Parameter | Type | Description |
---|---|---|
filename | const String& | Process path. |
arguments | const String& | Process parameters. |
ReturnValue
Object attached to newly started process.
See Also
- Typedef SharedPtr
- Class Process
- Class String
- Class Process
- Namespace System::Diagnostics
- Library Aspose.TeX for C++