[]
        
(Showing Draft Content)

ParseContext

Class ParseContext

java.lang.Object
com.grapecity.documents.excel.expressions.ParseContext

public class ParseContext extends Object
Contains options for converting string to FormulaSyntaxTree.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates an empty parse context.
  • Method Summary

    Modifier and Type
    Method
    Description
    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.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 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.