AssemblyInfo.Copyright Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the copyright notice associated with the application.
public:
property System::String ^ Copyright { System::String ^ get(); };
public string Copyright { get; }
member this.Copyright : string
Public ReadOnly Property Copyright As String
Property Value
A String
containing the copyright notice associated with the application.
Exceptions
The assembly does not have an AssemblyCopyrightAttribute attribute.
Examples
This example uses the My.Application.Info.Copyright
property to display the company name associated with the application.
MsgBox("Application copyright: " & My.Application.Info.Copyright)
Remarks
The My.Application.Info.Copyright
property gets the copyright notice associated with the application.
You can change the copyright notice by changing the value for Copyright in the Assembly Information dialog box, accessible from the Application pane of the Project Designer.
Availability by Project Type
Project type | Available |
---|---|
Windows Forms Application | Yes |
Class Library | Yes |
Console Application | Yes |
Windows Forms Control Library | Yes |
Web Control Library | No |
Windows Service | Yes |
Web Site | No |