This documentation is archived and is not being maintained.
Application::CompanyName Property
.NET Framework (current version)
Gets the company name associated with the application.
Namespace:
System.Windows.FormsAssembly:
System.Windows.Forms (in System.Windows.Forms.dll)
public:
property String^ CompanyName {
static String^ get();
}
The following code example gets this property and displays its value in a text box. The example requires that textBox1 has been placed on a form.
private:
void PrintCompanyName()
{
textBox1->Text = String::Format( "The company name is: {0}",
Application::CompanyName );
}
.NET Framework
Available since 1.1
Return to top