Control.CompanyName Property

 

Gets the name of the company or creator of the application containing the control.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

[<BrowsableAttribute(false)>]
member CompanyName : string with get

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")]
System_CAPS_noteNote

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: