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

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

public GetWidthCorrected ( float charSpacing, float wordSpacing ) : float
charSpacing float
wordSpacing float
Результат float
        public float GetWidthCorrected(float charSpacing, float wordSpacing)
        {
            float total = 0;
            for (int k = 0; k < line.Count; ++k) {
                PdfChunk ck = line[k];
                total += ck.GetWidthCorrected(charSpacing, wordSpacing);
            }
            return total;
        }