Re: Results tablw manipulation
Posted by Michael Schmid on Jul 16, 2010; 11:16am
URL: http://imagej.273.s1.nabble.com/Results-tablw-manipulation-tp3687576p3687582.html
Hi Andrew,
not a simple answer if you don't tell whether you talk about the user
interface, a macro or a plugin.
Plugin: In ResultsTable.java
/** Deletes the specified row. */
public synchronized void deleteRow(int row)
Or, restricted to the system results table:
/** Deletes 'row1' through 'row2' of the "Results" window. Arguments
must be in the range 0-Analyzer.getCounter()-1. */
IJ.deleteRows(int row1, int row2)
This should also work from a macro:
call("ij.IJ.deleteRows", row1, row2);
User interface:
Right-click on the row, 'Clear'
Michael
________________________________________________________________
On 16 Jul 2010, at 12:50, AJBell wrote:
> Hello,
>
> Simple question with I hope a simple answer!
>
> Is it possible to delete a column of a results table?
>
> Regards,
>
> Andrew Bell