Skip to main content

PdfFindDialogOptions(String, Boolean, Boolean) Constructor

Initializes a new instance of the PdfFindDialogOptions class with the specified settings.

Namespace: DevExpress.XtraPdfViewer

Assembly: DevExpress.XtraPdfViewer.v23.2.dll

NuGet Package: DevExpress.Win.PdfViewer

Declaration

public PdfFindDialogOptions(
    string text,
    bool caseSensitive,
    bool wholeWords
)

Parameters

Name Type Description
text String

A String value, specifying the search text. This value is assigned to the PdfFindDialogOptions.Text property.

caseSensitive Boolean

true, to take into account the letter case; otherwise false. This value is assigned to the PdfFindDialogOptions.CaseSensitive property.

wholeWords Boolean

true, if whole words should match the search criteria; otherwise false. This value is assigned to the PdfFindDialogOptions.WholeWords property.

See Also