help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: FW: removing text from graph (ahowe42)


From: pantxo diribarne
Subject: Re: FW: removing text from graph (ahowe42)
Date: Tue, 27 Mar 2012 14:44:13 +0200

Hi,

A way to delete a particular text with string e.g. "toto", is to retrieve its handle with findobj (provided there is only one text object with string "toto"). Assuming it is in the current figure :

h = findobj (gcf, "type", "text", "string", "toto");
delete (h);

Pantxo

reply via email to

[Prev in Thread] Current Thread [Next in Thread]