<cAppLog>.Window.Title

<< Click to Display Table of Contents >>

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

<cAppLog>.Window.Title

 

Description

 

Property allowing to get or set Window Title.

 

Syntax

 

' SET

<cAppLog>.Window.Title = StringExpression

 

' GET

String = <cAppLog>.Window.Title

 

Returns

 

String

 

Remarks

 

Restrictions

 

See also

 

Examples

 

uses "AppLog"

 

dim myLog as new cAppLog

 

...

 

myLog.Window.Title = "This is myLog.Window.Title"

 

sleep 1000