System::Diagnostics::ProcessStartInfo クラス

ProcessStartInfo class

プロセス開始パラメータを記述します。このクラスのオブジェクトは System::MakeObject() 関数を使用してのみ割り当てるべきです。スタック上や operator new を使用してこの型のインスタンスを作成しないでください。そうしないとランタイムエラーやアサーション障害が発生します。常にこのクラスを System::SmartPtr ポインタでラップし、そのポインタを関数の引数として渡すようにしてください。

class ProcessStartInfo : public System::Object

メソッド

メソッド説明
get_Arguments() constプロセス引数を取得します。
get_CreateNoWindow() constNoWindow プロパティを取得します。
get_EnvironmentVariables() constプロセスの環境変数を取得します。
get_FileName() constプロセスのファイル名を取得します。
get_RedirectStandardError() constRedirectStandardError プロパティを取得します。
get_RedirectStandardInput() constRedirectStandardInput プロパティを取得します。
get_RedirectStandardOutput() constRedirectStandardOutput プロパティを取得します。
get_UseShellExecute() constUseShellExecute プロパティを取得します。
get_WindowStyle() constウィンドウスタイルを取得します。
get_WorkingDirectory() constプロセスの作業ディレクトリを取得します。
ProcessStartInfo()空の開始情報オブジェクトを作成します。
ProcessStartInfo(const String&)開始情報オブジェクトを作成します。
ProcessStartInfo(const String&, const String&)開始情報オブジェクトを作成します。
set_Arguments(const String&)プロセス引数を設定します。
set_CreateNoWindow(bool)NoWindow プロパティを設定します。
set_FileName(const String&)プロセスのファイル名を設定します。
set_RedirectStandardError(bool)RedirectStandardError プロパティを設定します。
set_RedirectStandardInput(bool)RedirectStandardInput プロパティを設定します。
set_RedirectStandardOutput(bool)RedirectStandardOutput プロパティを設定します。
set_UseShellExecute(bool)UseShellExecute プロパティを設定します。
set_WindowStyle(ProcessWindowStyle)ウィンドウスタイルを設定します。
set_WorkingDirectory(const String&)プロセスの作業ディレクトリを設定します。

参照