Esempio n. 1
0
        public int GetVerticalGlyphAdvance(int glyph)
        {
            if (glyph < 0)
            {
                throw new ArgumentOutOfRangeException(nameof(glyph), "Glyph must be non negative.");
            }

            return(HarfBuzzApi.hb_font_get_glyph_v_advance(Handle, (uint)glyph));
        }
Esempio n. 2
0
 public int GetVerticalGlyphAdvance(uint glyph) =>
 HarfBuzzApi.hb_font_get_glyph_v_advance(Handle, glyph);