Installer.HelpText プロパティ
アセンブリ: System.Configuration.Install (system.configuration.install.dll 内)
構文
インストーラ コレクション内のすべてのインストーラに関するヘルプ テキスト。たとえば、インストーラの動作や、InstallUtil.exe ユーティリティなどのインストール実行可能ファイルの実行時にインストーラに渡されて解釈されるコマンド ライン オプションなどの説明が含まれます。
HelpText プロパティの例を次に示します。このプロパティは、Installer クラスで定義されています。このプロパティは、呼び出されると、Installer の説明、および Installutil.exe ユーティリティなど、インストールの実行可能ファイルに対するコマンド ライン オプションを返します。これらのオプションは Installer に渡されて認識されます。
' Override the property 'HelpText'. Public Overrides ReadOnly Property HelpText() As String Get Return _ "Installer Description : This is a sample Installer" + ControlChars.NewLine + _ "HelpText is used to provide useful information about the installer." End Get End Property
// Override the property 'HelpText'. public override string HelpText { get { return "Installer Description : This is a sample Installer\n" + "HelpText is used to provide useful information about the " + "installer."; } }
プラットフォーム
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
参照
- Installer.HelpText プロパティのページへのリンク