FindReplaceOptions

FindReplaceOptions()

Initializes a new instance of the FindReplaceOptions class with default settings.

public FindReplaceOptions()

See Also


FindReplaceOptions(FindReplaceDirection)

Initializes a new instance of the FindReplaceOptions class with the specified direction.

public FindReplaceOptions(FindReplaceDirection direction)
ParameterTypeDescription
directionFindReplaceDirectionThe direction of the find and replace operation.

See Also


FindReplaceOptions(IReplacingCallback)

Initializes a new instance of the FindReplaceOptions class with the specified replacing callback.

public FindReplaceOptions(IReplacingCallback replacingCallback)
ParameterTypeDescription
replacingCallbackIReplacingCallbackThe callback to use for replacing found text.

See Also


FindReplaceOptions(FindReplaceDirectionIReplacingCallback)

Initializes a new instance of the FindReplaceOptions class with the specified direction and replacing callback.

public FindReplaceOptions(FindReplaceDirection direction, IReplacingCallback replacingCallback)
ParameterTypeDescription
directionFindReplaceDirectionThe direction of the find and replace operation.
replacingCallbackIReplacingCallbackThe callback to use for replacing found text.

See Also