Package ij.measure

Examples of ij.measure.ResultsTable.deleteRow()


       must be in the range 0-Analyzer.getCounter()-1. */
  public static void deleteRows(int row1, int row2) {
    int n = row2 - row1 + 1;
    ResultsTable rt = Analyzer.getResultsTable();
    for (int i=row1; i<row1+n; i++)
      rt.deleteRow(row1);
    rt.show("Results");
  }

  /** Returns a reference to the "Results" window TextPanel.
    Opens the "Results" window if it is currently not open.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.