pltITitle GetExpandedText

Gets the expanded text of the title.

Syntax

pltITitle_handle GetExpandedText

Application

Tcl Query

Description

This command finds the expanded text of the title. This command is different from the GetText command because GetText returns any text in curly braces { }, literally (writing out everything in the curly braces), while GetExpandedText calculates anything in the curly braces before returning it. For example, {1 +1} in GetText would return as {1 +1}, while GetExpandedText returns it as {2}.

Example

hwi GetSessionHandle sess;
sess GetProjectHandle proj;
proj GetPageHandle p1 1;
p1 GetWindowHandle w1 1;	
w1 GetClientHandle plot;
plot GetHeaderHandle title;
title GetExpandedText;

Errors

Success (the expanded text) or an error message is returned.

Keywords

Tcl

Title

Query