Class ParseContext
java.lang.Object
com.grapecity.documents.excel.expressions.ParseContext
Contains options for converting
string to FormulaSyntaxTree.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal intA 0-based number that represents the column location of the formula.final intA 0-based number that represents the row location of the formula.final booleanIndicates whether the reference style is R1C1.final voidsetBaseColumn(int value) A 0-based number that represents the column location of the formula.final voidsetBaseRow(int value) A 0-based number that represents the row location of the formula.final voidsetIsR1C1(boolean value) Indicates whether the reference style is R1C1.
-
Constructor Details
-
ParseContext
public ParseContext()Creates an empty parse context.
-
-
Method Details
-
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.
-