iTextSharp.text.pdf.PdfReader.GetNamedDestination C# (CSharp) Method

GetNamedDestination() public method

public GetNamedDestination ( bool keepNames ) : Hashtable
keepNames bool
return Hashtable
        public Hashtable GetNamedDestination(bool keepNames) {
            Hashtable names = GetNamedDestinationFromNames(keepNames);
            Hashtable names2 = GetNamedDestinationFromStrings(); 
            foreach (DictionaryEntry ie in names2)
                names[ie.Key] = ie.Value;
            return names;
        }
        

Same methods

PdfReader::GetNamedDestination ( ) : Hashtable