Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / GcPdfDocument Class / NamedDestinations Property

In This Topic
    NamedDestinations Property
    In This Topic
    Gets the dictionary of named destinations defined in the current document.
    Syntax
    'Declaration
     
    Public ReadOnly Property NamedDestinations As System.Collections.Generic.IDictionary(Of String,IDestination)
    public System.Collections.Generic.IDictionary<string,IDestination> NamedDestinations {get;}
    Remarks
    According to the PDF specification, the named destinations can be specified in two ways:
    • As a PDF Dictionary in the Dests entry of the document catalog.
    • As a PDF Name Tree in the Dests entry of the document Name Dictionary.
    This property combines the destinations from both sources into a single dictionary.
    See Also