类 UnParseContext
java.lang.Object
com.grapecity.documents.excel.expressions.UnParseContext
Contains options for converting
FormulaSyntaxTree
to string
.-
构造器概要
-
方法概要
修饰符和类型方法说明final int
A 0-based number that represents the column location of the formula.final int
A 0-based number that represents the row location of the formula.final boolean
Indicates whether the reference style is R1C1.final void
setBaseColumn
(int value) A 0-based number that represents the column location of the formula.final void
setBaseRow
(int value) A 0-based number that represents the row location of the formula.final void
setIsR1C1
(boolean value) Indicates whether the reference style is R1C1.
-
构造器详细资料
-
UnParseContext
public UnParseContext()Creates an emptyUnParseContext
.
-
-
方法详细资料
-
getBaseRow
public final int getBaseRow()A 0-based number that represents the row location of the formula. -
setBaseRow
public final void setBaseRow(int value) A 0-based number that represents the row location of the formula. -
getBaseColumn
public final int getBaseColumn()A 0-based number that represents the column location of the formula. -
setBaseColumn
public final void setBaseColumn(int value) A 0-based number that represents the column location of the formula. -
getIsR1C1
public final boolean getIsR1C1()Indicates whether the reference style is R1C1. -
setIsR1C1
public final void setIsR1C1(boolean value) Indicates whether the reference style is R1C1.
-