GefScreen.Title (property)

Gets and sets the text displayed in the title.
Syntax: String = object.Title
object.Title = String
Description: GefScreen.Title is a string that contains the text of the title bar for the screen's window.

Examples

Sub GefScreen_Title()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    oCimScr.Title = "New Title"
    MsgBox "The title is now " & oCimScr.Title
    
End Sub