iTextSharp.text.pdf.AcroFields.InstHit.InstHit C# (CSharp) Method

InstHit() public method

public InstHit ( int inst ) : System
inst int
return System
            public InstHit(int[] inst) {
                if (inst == null)
                    return;
                hits = new IntHashtable();
                for (int k = 0; k < inst.Length; ++k)
                    hits[inst[k]] = 1;
            }
            
AcroFields.InstHit