// This sample demonstrates how to enable scrolling the table rows

  // Create and setup a new table
  TableNode table = diagram.getFactory().createTableNode(10104060);

  table.redimTable(120);
  for (int i = 0; i < table.getRowCount(); i++)
    table.getCell(0, i).setText("Row" new Integer(i).toString());

  // Enable scrolling
  table.setScrollable(true);