java.lang.Object
com.aspose.cells.Name
public class Name
Example:
//Instantiating a Workbook object
Workbook workbook = new Workbook();
//Accessing the first worksheet in the Excel file
Worksheet worksheet = workbook.getWorksheets().get(0);
//Creating a named range
Range range = worksheet.getCells().createRange("B4", "G14");
//Setting the name of the named range
range.setName("TestRange");
//Saving the modified Excel file in default (that is Excel 2000) format
workbook.save("output.xls");
| Property Getters/Setters Summary | ||
|---|---|---|
java.lang.String | getComment() | |
void | setComment(java.lang.String) | |
| Gets and sets the comment of the name. Only applies for Excel 2007. | ||
java.lang.String | getFullText() | |
| Gets the name full text of the object with the scope setting. | ||
boolean | isReferred() | |
| Indicates whether this name is referred by other formulas. | ||
boolean | isVisible() | |
void | setVisible(boolean) | |
| Indicates whether the name is visible. | ||
java.lang.String | getR1C1RefersTo() | |
void | setR1C1RefersTo(java.lang.String) | |
|
Gets or sets a R1C1 reference of the |
||
java.lang.String | getRefersTo() | |
void | setRefersTo(java.lang.String) | |
| Returns or sets the formula that the name is defined to refer to, beginning with an equal sign. | ||
int | getSheetIndex() | |
void | setSheetIndex(int) | |
| Indicates this name belongs to Workbook or Worksheet. 0 = Global name, otherwise index to sheet (one-based) | ||
java.lang.String | getText() | |
void | setText(java.lang.String) | |
| Gets the name text of the object. | ||
| Method Summary | ||
|---|---|---|
Range | getRange() | |
| Gets the range if this name refers to a range. | ||
Range | getRange(boolean recalculate) | |
| Gets the range if this name refers to a range | ||
Range | getRange(int sheetIndex, int row, int column) | |
| Gets the range if this name refers to a range. If the reference of this name is not absolute, the range may be different for different cell. | ||
com.aspose.cells.Range[] | getRanges() | |
| Gets all ranges referred by this name. | ||
com.aspose.cells.Range[] | getRanges(boolean recalculate) | |
| Gets all ranges referred by this name. | ||
com.aspose.cells.ReferredArea[] | getReferredAreas(boolean recalculate) | |
| Gets all references referred by this name. | ||
java.lang.String | getRefersTo(boolean isR1C1, boolean isLocal) | |
| Get the reference of this Name. | ||
java.lang.String | getRefersTo(boolean isR1C1, boolean isLocal, int row, int column) | |
| Get the reference of this Name based on specified cell. | ||
void | setRefersTo(java.lang.String refersTo, boolean isR1C1, boolean isLocal) | |
| Set the reference of this Name. | ||
java.lang.String | toString() | |
| Returns a string represents the current Range object. | ||
| Property Getters/Setters Detail |
|---|
getComment/setComment | |
public java.lang.String getComment() / public void setComment(java.lang.String value) | |
getText/setText | |
public java.lang.String getText() / public void setText(java.lang.String value) | |
getFullText | |
public java.lang.String getFullText() | |
getRefersTo/setRefersTo | |
public java.lang.String getRefersTo() / public void setRefersTo(java.lang.String value) | |
getR1C1RefersTo/setR1C1RefersTo | |
public java.lang.String getR1C1RefersTo() / public void setR1C1RefersTo(java.lang.String value) | |
isReferred | |
public boolean isReferred() | |
isVisible/setVisible | |
public boolean isVisible() / public void setVisible(boolean value) | |
getSheetIndex/setSheetIndex | |
public int getSheetIndex() / public void setSheetIndex(int value) | |
| Method Detail |
|---|
getRefersTo | |
public java.lang.String getRefersTo(boolean isR1C1, boolean isLocal) | |
isR1C1 - Whether the reference needs to be formatted as R1C1.isLocal - Whether the reference needs to be formatted by locale.getRefersTo | |
public java.lang.String getRefersTo(boolean isR1C1, boolean isLocal, int row, int column) | |
isR1C1 - Whether the reference needs to be formatted as R1C1.isLocal - Whether the reference needs to be formatted by locale.row - The row index of the cell.column - The column index of the cell.setRefersTo | |
public void setRefersTo(java.lang.String refersTo, boolean isR1C1, boolean isLocal) | |
refersTo - The reference.isR1C1 - Whether the reference is R1C1 format.isLocal - Whether the reference is locale formatted.toString | |
public java.lang.String toString() | |
getRanges | |
public com.aspose.cells.Range[] getRanges() | |
getRanges | |
public com.aspose.cells.Range[] getRanges(boolean recalculate) | |
recalculate - whether recalculate it if this name has been calculated before this invocation.getReferredAreas | |
public com.aspose.cells.ReferredArea[] getReferredAreas(boolean recalculate) | |
recalculate - whether recalculate it if this name has been calculated before this invocation.getRange | |
public Range getRange() | |
getRange | |
public Range getRange(boolean recalculate) | |
recalculate - whether recalculate it if this name has been calculated before this invocation.getRange | |
public Range getRange(int sheetIndex, int row, int column) | |
sheetIndex - The according sheet index.row - The according row index.column - The according column index