[]
        
(Showing Draft Content)

ReplaceOptions

Class ReplaceOptions

java.lang.Object
com.grapecity.documents.excel.ReplaceOptions

public class ReplaceOptions extends Object
Wraps all optional parameters in IRange.Replace(object, object, ReplaceOptions) to be consistent with the Java edition.
  • Constructor Details

    • ReplaceOptions

      public ReplaceOptions()
  • Method Details

    • getLookAt

      public final LookAt getLookAt()
      Get one of the LookAt enum. Default is LookAt.Part .
    • setLookAt

      public final void setLookAt(LookAt value)
      Set one of the LookAt enum. Default is LookAt.Part .
    • getSearchOrder

      public final SearchOrder getSearchOrder()
      Gets the search order.
      Returns:
      The SearchOrder enum value representing the search order.
    • setSearchOrder

      public final void setSearchOrder(SearchOrder value)
      Sets the search order.
      Parameters:
      value - The SearchOrder enum value representing the search order to set.
    • getMatchCase

      public final boolean getMatchCase()
      Get the search case sensitive. The default value is False .
    • setMatchCase

      public final void setMatchCase(boolean value)
      Set the search case sensitive. The default value is False .
    • getMatchByte

      public final boolean getMatchByte()
      Get the MatchByte way. True to have double-byte characters match only double-byte characters. False to have double-byte characters match their single-byte equivalents.
    • setMatchByte

      public final void setMatchByte(boolean value)
      Set the MatchByte way. True to have double-byte characters match only double-byte characters. False to have double-byte characters match their single-byte equivalents.
    • getSearchFormat

      public final IDisplayFormat getSearchFormat()
      Get the search format for the method.
    • setSearchFormat

      public final void setSearchFormat(IDisplayFormat value)
      Set the search format for the method.
    • getReplaceFormat

      public final IDisplayFormat getReplaceFormat()
      Get he replace format for the method.
    • setReplaceFormat

      public final void setReplaceFormat(IDisplayFormat value)
      Set the replace format for the method.