コード例 #1
0
ファイル: Bidi.cs プロジェクト: ranganathsb/JavaSharp
 /// <summary>
 /// Return the resolved level of the character at offset.  If offset is
 /// {@literal <} 0 or &ge; the length of the line, return the base direction
 /// level.
 /// </summary>
 /// <param name="offset"> the index of the character for which to return the level </param>
 /// <returns> the resolved level of the character at offset </returns>
 public int GetLevelAt(int offset)
 {
     return(BidiBase.getLevelAt(offset));
 }