类 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.
  • 构造器详细资料

    • ReplaceOptions

      public ReplaceOptions()
  • 方法详细资料

    • 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()
    • setSearchOrder

      public final void setSearchOrder(SearchOrder value)
    • 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.