Vb.net Translation for FindReplaceOptions?

Trying to customize the find and replace options as seen in this example:

FindReplaceOptions options = new FindReplaceOptions();

Unfortunately, I’m working in visual basic as opposed to C# and can not find any documentation to help me and FindReplaceOptions() is not defined

@SethD02 You should add in your code

Imports Aspose.Words.Replacing

Or use fully qualified type name:

Dim options As Aspose.Words.Replacing.FindReplaceOptions = New Aspose.Words.Replacing.FindReplaceOptions()
1 Like