<cAppLog>.Console.Title

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > AppLog > cAppLog Class > <cAppLog> Objects > <cAppLog>.Console >

<cAppLog>.Console.Title

 

Description

 

Property allowing to get or set Console Title.

 

Syntax

 

' SET

<cAppLog>.Console.Title = StringExpression

 

' GET

String = <cAppLog>.Console.Title

 

Returns

 

String

 

Remarks

 

Title can be changed only of Console window is visible

 

Restrictions

 

See also

 

Examples

 

uses "AppLog"

 

dim myLog as new cAppLog

 

...

 

myLog.Console.Title = "This is myLog.Console.Title"

 

sleep 1000