VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Text.Ucd Namespace / UnicodeCharacterDatabase Class / TryGetBibiMirroringPair(Char,Char) Method
Syntax Requirements SeeAlso
In This Topic
    TryGetBibiMirroringPair(Char,Char) Method (UnicodeCharacterDatabase)
    In This Topic
    Tries to get the BiDi mirroring pair for specified text character.
    Syntax
    'Declaration
    
    Public Shared Function TryGetBibiMirroringPair( _
    ByVal character
    The text character.
    As Char, _
    ByRef mirroredCharacter
    The mirrored text character.
    As Char _
    ) As Boolean
    public static bool TryGetBibiMirroringPair(
    char character,
    out char mirroredCharacter
    )
    public: static bool TryGetBibiMirroringPair(
    char character,
    [PARAMFLAG::Out] char mirroredCharacter
    )
    public:
    static bool TryGetBibiMirroringPair(
    char character,
    [Out] char mirroredCharacter
    )

    Parameters

    character
    The text character.
    mirroredCharacter
    The mirrored text character.

    Return Value

    True if character has mirroring pair; otherwise, false.
    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