Struct BidiClass
Represents the Unicode Bidi value of a given CodePoint. https://unicode.org/reports/tr9/#Table
public readonly struct BidiClass
- Inherited Members
Constructors
BidiClass(CodePoint)
Initializes a new instance of the BidiClass struct.
public BidiClass(CodePoint codePoint)
Parameters
codePointCodePointThe codepoint.
Properties
CharacterType
Gets the Unicode Bidirectional character type.
public BidiCharacterType CharacterType { get; }
Property Value
PairedBracketType
Gets the Unicode Bidirectional paired bracket type.
public BidiPairedBracketType PairedBracketType { get; }
Property Value
Methods
TryGetPairedBracket(out CodePoint)
Gets the codepoint representing the bracket pairing for this instance.
public bool TryGetPairedBracket(out CodePoint codePoint)
Parameters
codePointCodePointWhen this method returns, contains the codepoint representing the bracket pairing for this instance; otherwise, the default value for the type of the
codePointparameter. This parameter is passed uninitialized. .