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("C:\\output.xls");
Property Getters/Setters Summary | ||
---|---|---|
java.lang.String | getComment() | |
void | setComment(java.lang.Stringvalue) | |
Gets and sets the commont 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(booleanvalue) | |
Indicates whether the name is visible. | ||
java.lang.String | getR1C1RefersTo() | |
void | setR1C1RefersTo(java.lang.Stringvalue) | |
Gets or sets a R1C1 reference of the |
||
java.lang.String | getRefersTo() | |
void | setRefersTo(java.lang.Stringvalue) | |
Returns or sets the formula that the name is defined to refer to, beginning with an equal sign. | ||
int | getSheetIndex() | |
void | setSheetIndex(intvalue) | |
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.Stringvalue) | |
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.
|
||
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.
|
public java.lang.String getComment() / public void setComment(java.lang.String value)
public java.lang.String getText() / public void setText(java.lang.String value)
public java.lang.String getFullText()
public java.lang.String getRefersTo() / public void setRefersTo(java.lang.String value)
public java.lang.String getR1C1RefersTo() / public void setR1C1RefersTo(java.lang.String value)
public boolean isReferred()
public boolean isVisible() / public void setVisible(boolean value)
public int getSheetIndex() / public void setSheetIndex(int value)
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.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.public java.lang.String toString()
public com.aspose.cells.Range[] getRanges()
public com.aspose.cells.Range[] getRanges(boolean recalculate)
recalculate
- whether recalcuate it if this name has been calcualted before this invocation.public com.aspose.cells.ReferredArea[] getReferredAreas(boolean recalculate)
recalculate
- whether recalcuate it if this name has been calcualted before this invocation.public Range getRange()
public Range getRange(boolean recalculate)
recalculate
- whether recalcuate it if this name has been calcualted before this invocation.public Range getRange(int sheetIndex, int row, int column)
sheetIndex
- The according sheet index.row
- The according row index.column
- The according column index