AssemblyInfo.Trademark Property

Definition

Gets the trademark notice associated with the application.

public:
 property System::String ^ Trademark { System::String ^ get(); };
public string Trademark { get; }
member this.Trademark : string
Public ReadOnly Property Trademark As String

Property Value

A String containing the trademark notice associated with the application.

Exceptions

The assembly does not have an AssemblyTrademarkAttribute attribute.

Examples

This example uses the My.Application.Info.Trademark property to display the trademark information associated with the application.

MsgBox("Application trademark: " & My.Application.Info.Trademark)

Remarks

The My.Application.Info.Trademark property gets the trademark notice associated with the application.

You can change the trademark notice by changing the value for Trademark 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

Applies to

See also