Exemple #1
0
        private void ProcessFontRuns(RecordInputStream in1)
        {
            while (in1.Remaining > 0)
            {
                short index = in1.ReadShort();
                short iFont = in1.ReadShort();
                in1.ReadInt();  // skip reserved.

                _text.ApplyFont(index, _text.Length, iFont);
            }
        }