package NamedSelection;

import j4d.open.*;

class Examplet {

  /* doCutNamedSelection
  */
  public void doCutNamedSelection(opProcess process) throws opException {

    int targetTable = 2;

    try{
      opSelection mSelection = new opSelection(targetTable, "My_New_Selection");
      process.CutNamedSelection(mSelection);
    }
    catch (opException er){throw er;}
  }

}