VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Text Namespace / TextSearchEngine Class / Create Methods / Create(String,Boolean) Method
Syntax Requirements SeeAlso
In This Topic
    Create(String,Boolean) Method (TextSearchEngine)
    In This Topic
    Creates a new instance of TextSearchEngine which can be used for searching text string in page.
    Syntax
    'Declaration
    
    Public Overloads Shared Function Create( _
    ByVal value
    Text to search.
    As System.String, _
    ByVal ignoreCase
    A value indicating whether the case sensitivity should be ignored.
    As Boolean _
    ) As TextSearchEngine
    public static TextSearchEngine Create(
    System.String value,
    bool ignoreCase
    )
    public: static TextSearchEngine* Create(
    System.String value,
    bool ignoreCase
    )
    public:
    static TextSearchEngine^ Create(
    System.String value,
    bool ignoreCase
    )

    Parameters

    value
    Text to search.
    ignoreCase
    A value indicating whether the case sensitivity should be ignored.

    Return Value

    A new text search engine.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also