*titlemodify

Modifies a title entity.

Syntax

*titlemodify titlename itemname string value plot

Type

HyperMesh Tcl Modify Command

Description

Modifies a title entity.

Inputs

titlename
The name of the title.
itemname
The name of the item to be modified. itemname can be one of the following options:
titlecolor - Title color, 0 through 64.
titlefont - Font used to display text (1-4, with 1 being the smallest font and 4 being the largest).
titleanchor - Anchor corner of the title.
  • 0 - lower left
  • 1 - upper left
  • 2 - upper right
  • 3 - lower right
border on - Turns the border on and off.
  • 1 - turn border on
  • 0 - turn border off
borderwidth - Width of the border.
borderxmin - Minimum x value of the border.
borderxmax - Maximum x value of the border.
borderymin - Minimum y value of the border.
borderymax - Maximum y value of the border.
titletext - Set the title text to string.
string
The string value to which the modified item should be set. When itemname is titletext, the title displays a string.
value
The value to which the modified item should be set. Used for all itemnames, except titletext.
plot
Designates whether the title will be plotted after modification.
1 - Plot the title after modification.
0 - Do not plot the title after modification.

Example

*titlemodify("test","borderon","",1,0)
*titlemodify("test","bordercolor","",4,0)
*titlemodify("test","titletext","This is test",0,1)
*titlemodify("test","titlefont","",3,1)
*titlemodify("test","titleanchor","",1,1)
*titlemodify("test","borderxmin","",0.469273743,0)
*titlemodify("test","borderymin","",0.120287253,0)

Errors

None.