|
"Nicolás" wrote in message <k75irl$lpc$1@newscl01ah.mathworks.com>...
> I would like to know how it is possible changing the title of a panel. This panel is built on the guide, and I need to change its title from the code, with a method " set".
The easiest way to do these kind of things is to set a breakpoint in your code where you want to do the set(), run the code to the breakpoint , and then type:
get(fh)
where fh is the figure handle of the panel. This will show you all the properties you can change with set(). You can experiment with setting the values and see what works...
|