-
com.grapecity.documents.excel
-
- AsyncCustomFunction
- BaseCellType
- ButtonCellType
- CalcReference
- CancellationToken
- CancellationTokenSource
- CellColorSortField
- CellDecoration
- CellDecorationIcon
- CellInfo
- CellPadding
- CheckBoxCellType
- CheckBoxListCellType
- Color
- ColorUtilities
- ComboBoxCellItem
- ComboBoxCellType
- CornerFold
- CsvOpenOptions
- CsvParseContext
- CsvParseResult
- CsvSaveOptions
- CustomBorderStyle
- CustomFunction
- DataImportOptions
- DataImportResult
- DataValidationJsonError
- DateInfo
- DeserializationOptions
- DocumentProperties
- Event
- EventArgs
- FindOptions
- FontColorSortField
- FontInfo
- FormulaJsonError
- HyperLinkCellType
- IconSortField
- ImageSaveOptions
- ImageSource
- JsonError
- Margin
- OpenOptionsBase
- PageContentInfo
- PageInfo
- PagePrintedEventArgs
- PagePrintEventArgs
- PagePrintingEventArgs
- PageSettings
- Parameter
- PasteOption
- PdfSaveOptions
- PdfSecurityOptions
- PivotFilterOptions
- Point
- PrintManager
- RadioButtonListCellType
- RangeEventArgs
- RangeFindReplace
- RangeFindReplace.FindReplaceImpl
- RangePartialClasses
- RangePartialClasses.FindReplaceImpl
- RangeTemplateCellType
- Rectangle
- RepeatSetting
- ReplaceOptions
- SaveOptionsBase
- SelectFieldItem
- SerializationOptions
- SheetEventArgs
- SignatureDetails
- Size
- SjsOpenOptions
- SjsSaveOptions
- SortFieldBase
- SpecialCellsValue
- TableStyleFactory
- TextFormatInfo
- Theme
- Themes
- ThemeStorage
- ValueSortField
- WebRequestResult
- Workbook
- WorkbookOptions
- WriteProtection
- XlsmOpenOptions
- XlsmSaveOptions
- XlsxOpenOptions
- XlsxSaveOptions
- XltxOpenOptions
- XltxSaveOptions
-
- com.grapecity.documents.excel.drawing
- com.grapecity.documents.excel.expressions
- com.grapecity.documents.excel.forms
- com.grapecity.documents.excel.template
- com.grapecity.documents.excel.template.DataSource
(Showing Draft Content)
ReplaceOptions
Class 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.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal LookAtGet one of the LookAt enum.final booleanGet the MatchByte way.final booleanGet the search case sensitive.final IDisplayFormatGet he replace format for the method.final IDisplayFormatGet the search format for the method.final SearchOrderGets the search order.final voidSet one of the LookAt enum.final voidsetMatchByte(boolean value) Set the MatchByte way.final voidsetMatchCase(boolean value) Set the search case sensitive.final voidsetReplaceFormat(IDisplayFormat value) Set the replace format for the method.final voidsetSearchFormat(IDisplayFormat value) Set the search format for the method.final voidsetSearchOrder(SearchOrder value) Sets the search order.
-
Constructor Details
-
ReplaceOptions
public ReplaceOptions()
-
-
Method Details
-
getLookAt
Get one of the LookAt enum. Default is LookAt.Part . -
setLookAt
Set one of the LookAt enum. Default is LookAt.Part . -
getSearchOrder
Gets the search order.- Returns:
- The
SearchOrderenum value representing the search order.
-
setSearchOrder
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
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.
-