Gets marking IDs at specified index as a bit mask (internal representation).

Namespace: Sgry.Azuki
Assembly: Azuki (in Azuki.dll) Version: 1.7.13.40248

Syntax

C#
public uint GetMarkingBitMaskAt(
	int index
)
Visual Basic
Public Function GetMarkingBitMaskAt ( 
	index As Integer
) As UInteger

Parameters

index
Type: System..::..Int32
The marking IDs put on the character at this index will be returned.

Return Value

Type: UInt32
Bit mask represents markings which covers the character.

Remarks

This method gets a bit-masked integer representing which marking IDs are put on that position.

For detail of marking feature, please refer to the document of Marking class.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeException Parameter index is out of valid range.

See Also