Xceed Words for .NET v5.0 Documentation
Xceed.Document.NET Assembly / Xceed.Document.NET Namespace / Container Class / FindAll Method / FindAll(String,RegexOptions) Method
The value to search for.
A value representing the regular expression options to use.


In This Topic
    FindAll(String,RegexOptions) Method
    In This Topic
    Retrieves all the indexes in this Container where the provided search value is found, using the provided RegexOptions.
    Syntax
    'Declaration
     
    Public Overloads Overridable Function FindAll( _
       ByVal str As String, _
       ByVal options As RegexOptions _
    ) As List(Of Integer)
    'Usage
     
    Dim instance As Container
    Dim str As String
    Dim options As RegexOptions
    Dim value As List(Of Integer)
     
    value = instance.FindAll(str, options)
    public virtual List<int> FindAll( 
       string str,
       RegexOptions options
    )

    Parameters

    str
    The value to search for.
    options
    A value representing the regular expression options to use.

    Return Value

    A list of indexes that match the search conditions.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows, 11, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also