iTextSharp.text.pdf.CFFFont.Exists C# (CSharp) Méthode

Exists() public méthode

public Exists ( String fontName ) : bool
fontName String
Résultat bool
        public bool Exists(String fontName) {
            int j;
            for (j=0; j<fonts.Length; j++)
                if (fontName.Equals(fonts[j].name)) return true;
            return false;
        }