Example usage for Java org.apache.poi.ss.usermodel Name fields, constructors, methods, implement or subclass
The text is from its open source code.
String | getNameName() Gets the name of the named range |
String | getRefersToFormula() Returns the formula that the name is defined to refer to. |
int | getSheetIndex() Returns the sheet index this name applies to. |
String | getSheetName() Get the sheets name which this named range is referenced to |
boolean | isDeleted() Checks if this name points to a cell that no longer exists |
boolean | isFunctionName() Checks if this name is a function name |
void | setNameName(String name) Sets the name of the named range The following is a list of syntax rules that you need to be aware of when you create and edit names.
|
void | setRefersToFormula(String formulaText) Sets the formula that the name is defined to refer to. |
void | setSheetIndex(int sheetId) Tell Excel that this name applies to the worksheet with the specified index instead of the entire workbook. |