This document is archived and information here might be outdated. Recommended version. |
The caption of this application.
[Visual Basic .NET]
Public Property Caption As String
[C#]
public string Caption {get; set;}
The Caption is the string that appears as the title of the application's main window.
The following function sets the title of the main desktop application window.
public void SetCaption(IApplication app)
{
app.Caption = "My Custom Application";
}
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