ReloadGlyphFromChar() приватный Метод

private ReloadGlyphFromChar ( char unicodeChar, int pixelSize ) : FontGlyph
unicodeChar char
pixelSize int
Результат FontGlyph
Пример #1
0
        public override FontGlyph GetGlyph(char c)
        {
            FontGlyph found;

            if (!dicGlyphs.TryGetValue(c, out found))
            {
                found = ownerFace.ReloadGlyphFromChar(c, fontSizeInPixelUnit);
                this.dicGlyphs.Add(c, found);
            }
            return(found);
        }