AtelierElieScripter.ResourceObjects.JapFontResourceObject.GetChar C# (CSharp) Метод

GetChar() публичный Метод

Returns Bitmap of the specified Character
public GetChar ( uint chara ) : Bitmap
chara uint SJIS Character Number
Результат System.Drawing.Bitmap
        public Bitmap GetChar(uint chara)
        {
            try{
                return fontChars[chara];
            }
            catch (KeyNotFoundException)
            {
                Debug.WriteLine("Character does not exist: " + chara.ToString("X4"));
                return fontChars[0x8140];
            }
        }