Example: Name property

This example displays the name of the first table style.

  TableStyles tableStyles = spreadsheet.getTableStyles();
  TableStyle style = tableStyles.item(1);
  System.out.println(style.getName());

Related information

Name property