类 ReplaceOptions
java.lang.Object
com.grapecity.documents.excel.ReplaceOptions
Wraps all optional parameters in IRange.Replace(object, object, ReplaceOptions) to be consistent with the Java edition.
-
构造器概要
-
方法概要
修饰符和类型方法说明final LookAt
Get one of the LookAt enum.final boolean
Get the MatchByte way.final boolean
Get the search case sensitive.final IDisplayFormat
Get he replace format for the method.final IDisplayFormat
Get the search format for the method.final SearchOrder
final void
Set one of the LookAt enum.final void
setMatchByte
(boolean value) Set the MatchByte way.final void
setMatchCase
(boolean value) Set the search case sensitive.final void
setReplaceFormat
(IDisplayFormat value) Set the replace format for the method.final void
setSearchFormat
(IDisplayFormat value) Set the search format for the method.final void
setSearchOrder
(SearchOrder value)
-
构造器详细资料
-
ReplaceOptions
public ReplaceOptions()
-
-
方法详细资料
-
getLookAt
Get one of the LookAt enum. Default is LookAt.Part . -
setLookAt
Set one of the LookAt enum. Default is LookAt.Part . -
getSearchOrder
-
setSearchOrder
-
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
Get the search format for the method. -
setSearchFormat
Set the search format for the method. -
getReplaceFormat
Get he replace format for the method. -
setReplaceFormat
Set the replace format for the method.
-