System::Diagnostics::Process::Start 方法
内容
[
隐藏
]Process::Start() method
使用预定义参数启动进程。
bool System::Diagnostics::Process::Start()
另见
- Class Process
- Namespace System::Diagnostics
- Library Aspose.Font for C++
Process::Start(const SharedPtr<ProcessStartInfo>&) method
使用指定的路径和参数启动进程。
static SharedPtr<Process> System::Diagnostics::Process::Start(const SharedPtr<ProcessStartInfo> &start_info)
| 参数 | 类型 | 描述 |
|---|---|---|
| start_info | const SharedPtr<ProcessStartInfo>& | 要启动的进程信息。 |
ReturnValue
Object attached to newly started process.
另见
- Typedef SharedPtr
- Class Process
- Class ProcessStartInfo
- Class Process
- Namespace System::Diagnostics
- Library Aspose.Font for C++
Process::Start(const String&, const String&) method
使用指定的路径和参数启动进程。
static SharedPtr<Process> System::Diagnostics::Process::Start(const String &filename, const String &arguments=String::Empty)
| 参数 | 类型 | 描述 |
|---|---|---|
| filename | const String& | Process 路径。 |
| arguments | const String& | Process 参数。 |
ReturnValue
Object attached to newly started process.
另见
- Typedef SharedPtr
- Class Process
- Class String
- Class Process
- Namespace System::Diagnostics
- Library Aspose.Font for C++