use of net.sourceforge.nattable.export.excel.command.ExportToExcelCommand in project translationstudio8 by heartsome.
the class ExportToExcelAction method run.
public void run(NatTable natTable, KeyEvent event) {
natTable.doCommand(new TurnViewportOffCommand());
natTable.doCommand(new ExportToExcelCommand(natTable.getConfigRegistry(), natTable.getShell()));
natTable.doCommand(new TurnViewportOnCommand());
}
Aggregations