iTextSharp.text.pdf.TrueTypeFontSubSet.TrueTypeFontSubSet C# (CSharp) Метод

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

public TrueTypeFontSubSet ( string fileName, RandomAccessFileOrArray rf, int[]>.Dictionary glyphsUsed, int directoryOffset, bool includeCmap, bool includeExtras ) : System
fileName string
rf RandomAccessFileOrArray
glyphsUsed int[]>.Dictionary
directoryOffset int
includeCmap bool
includeExtras bool
Результат System
        public TrueTypeFontSubSet(string fileName, RandomAccessFileOrArray rf, Dictionary<int,int[]> glyphsUsed, int directoryOffset, bool includeCmap, bool includeExtras)
        {
            this.fileName = fileName;
            this.rf = rf;
            this.glyphsUsed = glyphsUsed;
            this.includeCmap = includeCmap;
            this.includeExtras = includeExtras;
            this.directoryOffset = directoryOffset;
            glyphsInList = new List<int>(glyphsUsed.Keys);
        }