Class NamedDestination
  
  Represents a named destination. Named destinations are destinations in the document which can be referred to indirectly by means of a name.
 
  
  
  
    Inheritance
    System.Object
    
    NamedDestination
   
  
  
  
    Inherited Members
    
    
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
   
  
  
  Assembly: Telerik.Windows.Documents.Fixed.dll
  
  Syntax
  
    public class NamedDestination : FixedDocumentElementBase, IFixedDocumentElement, IContextClonable<NamedDestination>
   
  
  
  
  
  
  Properties
  
  
  
  
  
  
  
  
  Gets or sets the target destination that this named destination points to.
This defines the specific location, page fit, or other destination behavior when navigating to this named destination.
 
  
  Declaration
  
  
    public Destination Destination { get; set; }
   
  
  
  
  
  
  Property Value
  
    
      | 
        Destination
         The destination object that specifies where to navigate. 
       | 
    
  
  
  
  
  
  
  
  
   
  
  
  
  
  
  
  
  Gets or sets the GoTo action associated with this named destination.
This action defines the navigation behavior when this named destination is activated.
 
  
  Declaration
  
  
    public GoToAction GoToAction { get; set; }
   
  
  
  
  
  
  Property Value
  
    
      | 
        GoToAction
         The GoTo action that will be executed when navigating to this destination. 
       | 
    
  
  
  
  
  
  
  
  
   
  
  
  
  
  
  
  
  Gets or sets the unique name identifier for this destination. This name can be used to reference
the destination from bookmarks, links, or other navigation elements within the document.
 
  
  Declaration
  
  
    public string Name { get; set; }
   
  
  
  
  
  
  Property Value
  
    
      | 
        System.String
         The destination name as a string identifier. 
       | 
    
  
  
  
  
  
  
  
  
   
  
  Extension Methods