类 Reference
java.lang.Object
com.grapecity.documents.excel.expressions.Reference
- 所有已实现的接口:
Cloneable
Represents a reference in formula.
-
字段概要
-
构造器概要
-
方法概要
修饰符和类型方法说明clone()
Copy the reference.boolean
Equality comparison.boolean
Equality comparison for late binding.int
Gets or sets the 0-based column index.boolean
Indicates whether the reference has column.boolean
Gets or sets whether the reference has row.boolean
Gets or sets whether the column is relative.boolean
Gets or sets whether the reference contains error.boolean
Gets or sets whether the last column is relative.boolean
Gets or sets whether the last row is absolute.boolean
Gets or sets whether the reference is range.boolean
Gets or sets whether the row is relative.int
Gets or sets the end column index.int
Gets or sets the 0-based end row index.The name of the end worksheet of the 3D reference.int
getRow()
Gets or sets the 0-based row index.Gets or sets the external workbook reference.The name of the worksheet.int
hashCode()
This object doesn't support getting hash code, because all fields are mutable.void
setColumn
(int value) Gets or sets the 0-based column index.void
setHasColumn
(boolean value) Indicates whether the reference has column.void
setHasRow
(boolean value) Gets or sets whether the reference has row.void
setIsColumnRelative
(boolean value) Gets or sets whether the column is relative.void
setIsError
(boolean value) Gets or sets whether the reference contains error.void
setIsLastColumnRelative
(boolean value) Gets or sets whether the last column is relative.void
setIsLastRowRelative
(boolean value) Gets or sets whether the last row is absolute.void
setIsRange
(boolean value) Gets or sets whether the reference is range.void
setIsRowRelative
(boolean value) Gets or sets whether the row is relative.void
setLastColumn
(int value) Gets or sets the end column index.void
setLastRow
(int value) Gets or sets the 0-based end row index.void
setLastWorksheetName
(String value) The name of the end worksheet of the 3D reference.void
setRow
(int value) Gets or sets the 0-based row index.void
setWorkbook
(WorkbookReference value) Gets or sets the external workbook reference.void
setWorksheetName
(String value) The name of the worksheet.toString()
Converts the reference to A1 string.toString
(UnParseContext context) Converts the reference to string.
-
字段详细资料
-
ErrorWorksheetName
- 另请参阅:
-
-
构造器详细资料
-
Reference
public Reference()
-
-
方法详细资料
-
getWorkbook
Gets or sets the external workbook reference. The default value isnull
. -
setWorkbook
Gets or sets the external workbook reference. The default value isnull
. -
getWorksheetName
The name of the worksheet. -
setWorksheetName
The name of the worksheet. -
getLastWorksheetName
The name of the end worksheet of the 3D reference. -
setLastWorksheetName
The name of the end worksheet of the 3D reference. -
getHasRow
public boolean getHasRow()Gets or sets whether the reference has row. The default value istrue
. -
setHasRow
public void setHasRow(boolean value) Gets or sets whether the reference has row. The default value istrue
. -
getHasColumn
public boolean getHasColumn()Indicates whether the reference has column. The default value istrue
. -
setHasColumn
public void setHasColumn(boolean value) Indicates whether the reference has column. The default value istrue
. -
getRow
public int getRow()Gets or sets the 0-based row index. The default value is 0. -
setRow
public void setRow(int value) Gets or sets the 0-based row index. The default value is 0. -
getColumn
public int getColumn()Gets or sets the 0-based column index. The default value is 0. -
setColumn
public void setColumn(int value) Gets or sets the 0-based column index. The default value is 0. -
getLastRow
public int getLastRow()Gets or sets the 0-based end row index. The default value is 0. -
setLastRow
public void setLastRow(int value) Gets or sets the 0-based end row index. The default value is 0. -
getLastColumn
public int getLastColumn()Gets or sets the end column index. The default value is 0. -
setLastColumn
public void setLastColumn(int value) Gets or sets the end column index. The default value is 0. -
getIsRowRelative
public boolean getIsRowRelative()Gets or sets whether the row is relative. The default value istrue
. -
setIsRowRelative
public void setIsRowRelative(boolean value) Gets or sets whether the row is relative. The default value istrue
. -
getIsColumnRelative
public boolean getIsColumnRelative()Gets or sets whether the column is relative. The default value istrue
. -
setIsColumnRelative
public void setIsColumnRelative(boolean value) Gets or sets whether the column is relative. The default value istrue
. -
getIsLastRowRelative
public boolean getIsLastRowRelative()Gets or sets whether the last row is absolute. The default value istrue
. -
setIsLastRowRelative
public void setIsLastRowRelative(boolean value) Gets or sets whether the last row is absolute. The default value istrue
. -
getIsLastColumnRelative
public boolean getIsLastColumnRelative()Gets or sets whether the last column is relative. The default value istrue
. -
setIsLastColumnRelative
public void setIsLastColumnRelative(boolean value) Gets or sets whether the last column is relative. The default value istrue
. -
getIsRange
public boolean getIsRange()Gets or sets whether the reference is range. The default value isfalse
. -
setIsRange
public void setIsRange(boolean value) Gets or sets whether the reference is range. The default value isfalse
. -
getIsError
public boolean getIsError()Gets or sets whether the reference contains error. The default value isfalse
. -
setIsError
public void setIsError(boolean value) Gets or sets whether the reference contains error. The default value isfalse
. -
toString
Converts the reference to A1 string. -
toString
Converts the reference to string.- 参数:
context
- The parse options.
-
equals
Equality comparison for late binding. -
equals
Equality comparison.- 参数:
other
- Another reference.
-
hashCode
public int hashCode()This object doesn't support getting hash code, because all fields are mutable. -
clone
Copy the reference.
-