Package org.openl.excel.parser
Interface TableStyles
-
- All Known Implementing Classes:
EventTableStyles,SAXTableStyles
public interface TableStylesNeeded to retrieve styles, fonts, comments for a given table.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ICellCommentgetComment(int row, int column)ICellFontgetFont(int row, int column)StringgetFormula(int row, int column)IGridRegiongetRegion()ICellStylegetStyle(int row, int column)
-
-
-
Method Detail
-
getRegion
IGridRegion getRegion()
-
getStyle
ICellStyle getStyle(int row, int column)
-
getFont
ICellFont getFont(int row, int column)
-
getComment
ICellComment getComment(int row, int column)
-
getFormula
String getFormula(int row, int column)
-
-