TEXT Methods

Class methods:

use GQE; 

$text1 = TEXT->create( name => "whatever",     # mandatory
                       string => "msg",
                       ...);
$text2 = TEXT->locate( name => "whatever");     # mandatory

Methods:

$ret = $text1->delete();	
$ret = $text1->get( "itemName"); 	         
$ret = $text1->set( itemName => "itemValue"[,...]); 	

# Examples: 
$ret = $text1->get( "colour"); 	         
$ret = $text1->set( font => 12, colour => "blue");



Subsections