Control::CompanyName Property
Gets the name of the company or creator of the application containing the control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System::String^The company name or creator of the application containing the control.
The CompanyName property is a read-only property. To change the value of this property, set the Company property value of the AssemblyCompanyAttribute. The following line of C# code sets the CompanyName property.
[assembly: AssemblyCompany("Microsoft")]
Note |
|---|
It is strongly recommended that you provide the company name, product name, and product version for your app. |
The following code example displays information about the application in a Label contained by a Form. This example requires that the CompanyName, ProductName and ProductVersion have been set.
Available since 1.1
