ArcObjects Library Reference (Framework)  

IApplication.Caption Property

The caption of this application.

[Visual Basic .NET]
Public Property Caption As String
[C#]
public string Caption {get; set;}

Product Availability

Available with ArcGIS Desktop.

Description

The Caption is the string that appears as the title of the application's main window.

[C#]

The following function sets the title of the main desktop application window.

public void SetCaption(IApplication app)
{
   app.Caption = "My Custom Application";
}
[Visual Basic .NET]

The following Sub sets the title of the main desktop application window.

 Public Sub SetCaption(app As IApplication)
   app.Caption = "My Custom Application"
 End Sub 

See Also

IApplication Interface

.NET Samples

Automate ArcGIS for Desktop applications (Code Files: Form1)