Installer.HelpText Property
.NET Framework 2.0
Gets the help text for all the installers in the installer collection.
Namespace: System.Configuration.Install
Assembly: System.Configuration.Install (in system.configuration.install.dll)
Assembly: System.Configuration.Install (in system.configuration.install.dll)
/** @property */ public String get_HelpText ()
public function get HelpText () : String
Property Value
The help text for all the installers in the installer collection, including the description of what the installer does and the command line options for the installation executable, such as the InstallUtil.exe utility, that can be passed to and understood by this installer.The following example demonstrates the HelpText property. This property is defined in the Installer class, which, when called, returns the description of the Installer and the command line options for the installation executable, such as the Installutil.exe utility, that can be passed to and understood by the Installer.
// 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.";
// Override the property 'HelpText'.
/** @property
*/
public String get_HelpText()
{
return "Installer Description : This is a sample Installer\n"
+ "HelpText is used to provide useful information about the "
+ "installer.";
//get_HelpText
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
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.