Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / FindTextParams Class / FindTextParams Constructor / FindTextParams Constructor(String,Boolean,Boolean,ViewState,Single,Single,Boolean,Boolean)
The text to find.
Indicates whether to match whole words only.
Indicates whether to match case.
The ViewState object.
The horizontal resolution used to calculate bounds of the found text on the page.
The vertical resolution used to calculate bounds of the found text on the page.
Indicates whether to ignore errors in PDF content stream if possible.
Indicates whether to interpret text as a regular expression.

In This Topic
    FindTextParams Constructor(String,Boolean,Boolean,ViewState,Single,Single,Boolean,Boolean)
    In This Topic
    Initializes a new instance of the FindTextParams class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal text As System.String, _
       ByVal wholeWord As System.Boolean, _
       ByVal matchCase As System.Boolean, _
       ByVal viewState As ViewState, _
       Optional ByVal dpiX As System.Single, _
       Optional ByVal dpiY As System.Single, _
       Optional ByVal ignoreErrors As System.Boolean, _
       Optional ByVal regex As System.Boolean _
    )
    public FindTextParams( 
       System.string text,
       System.bool wholeWord,
       System.bool matchCase,
       ViewState viewState,
       System.float dpiX,
       System.float dpiY,
       System.bool ignoreErrors,
       System.bool regex
    )

    Parameters

    text
    The text to find.
    wholeWord
    Indicates whether to match whole words only.
    matchCase
    Indicates whether to match case.
    viewState
    The ViewState object.
    dpiX
    The horizontal resolution used to calculate bounds of the found text on the page.
    dpiY
    The vertical resolution used to calculate bounds of the found text on the page.
    ignoreErrors
    Indicates whether to ignore errors in PDF content stream if possible.
    regex
    Indicates whether to interpret text as a regular expression.
    See Also