VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Text Namespace / TextRegionLineSymbolPredicate Delegate
Syntax Requirements SeeAlso
In This Topic
    TextRegionLineSymbolPredicate Delegate
    In This Topic
    Represents the method that defines a set of criteria and determines whether the specified parameters meet those criteria.
    Syntax
    'Declaration
    
    Public Delegate Sub TextRegionLineSymbolPredicate( _
    ByVal lineSymbols
    An array, which contains the symbols of text region line.
    () As TextRegionSymbol, _
    ByVal symbolIndex
    The zero-based index, in lineSymbols, of symbol, which must be tested.
    As System.Int32 _
    )
    public delegate void TextRegionLineSymbolPredicate(
    TextRegionSymbol[] lineSymbols,
    System.Int32 symbolIndex
    )
    public: __gc __delegate void TextRegionLineSymbolPredicate(
    TextRegionSymbol*[] lineSymbols,
    System.Int32 symbolIndex
    )
    public delegate void TextRegionLineSymbolPredicate(
    TextRegionSymbol^[] lineSymbols,
    System.Int32 symbolIndex
    )

    Parameters

    lineSymbols
    An array, which contains the symbols of text region line.
    symbolIndex
    The zero-based index, in lineSymbols, of symbol, which must be tested.

    Return Value

    True if symbol meets the criteria defined within the method represented by this delegate; otherwise, false.
    Requirements

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

    %GROUP.MEMBERS%