iTextSharp.text.pdf.AcroFields.InstHit.IsHit C# (CSharp) Méthode

IsHit() public méthode

public IsHit ( int n ) : bool
n int
Résultat bool
            public bool IsHit(int n) {
                if (hits == null)
                    return true;
                return hits.ContainsKey(n);
            }
        }
AcroFields.InstHit