←Select platform

RunLinkTarget Method

Summary

Invokes the specified document link target.

Syntax
C#
VB
C++
public virtual void RunLinkTarget( 
   DocumentLinkTarget linkTarget 
) 
Public Overridable Sub RunLinkTarget( 
   ByVal linkTarget As DocumentLinkTarget 
) 
public:  
   virtual void RunLinkTarget( 
      DocumentLinkTarget^ linkTarget 
   ) 

Parameters

linkTarget

Properties of the link target to invoke

Remarks

RunLinkTarget is called internally by the document viewer and can be invoked by the user to perform the action specified by a DocumentLinkTarget object.

It is called internally when any of the following occur:

The application can also create a custom DocumentLinkTarget that does not exist in the document and call RunLinkTarget manually.

In all cases, the following is performed:

If the value of PageNumber of linkTarget is 0, then the current page is not changed, otherwise, if the value is not a valid page number, an exception is thrown.

Example

Start with the example created in DocumentViewer, remove all the code in the Example function and add the code below.

When the user clicks the Example button, we will go to page number 3 in the document and set the fit mode to "page width".

C#
VB
using Leadtools; 
using Leadtools.Controls; 
using Leadtools.Document; 
using Leadtools.Document.Viewer; 
using Leadtools.Codecs; 
using Leadtools.Caching; 
using Leadtools.Annotations.Engine; 
using Leadtools.Ocr; 
 
// Create a new DocumentLink 
// First the target, goto page number 3 and fit width 
var linkTarget = new DocumentLinkTarget(); 
linkTarget.PageNumber = 3; 
linkTarget.PageFitType = DocumentPageFitType.FitWidth; 
// Now the link, of type goto-page 
var link = new DocumentLink(); 
link.LinkType = DocumentLinkType.TargetPage; 
link.Target = linkTarget; 
 
// Run this link 
_documentViewer.RunLinkTarget(linkTarget); 
Imports Leadtools 
Imports Leadtools.Controls 
Imports Leadtools.Document 
Imports Leadtools.Document.Viewer 
Imports Leadtools.Codecs 
Imports Leadtools.Caching 
Imports Leadtools.Annotations.Engine 
Imports Leadtools.Ocr 
 
' Create a new DocumentLink 
' First the target, goto page number 3 and fit width 
Dim linkTarget As New DocumentLinkTarget() 
linkTarget.PageNumber = 3 
linkTarget.PageFitType = DocumentPageFitType.FitWidth 
' Now the link, of type goto-page 
Dim link As New DocumentLink() 
link.LinkType = DocumentLinkType.TargetPage 
link.Target = linkTarget 
 
' Run this link 
_documentViewer.RunLinkTarget(linkTarget) 

Requirements

Target Platforms

Help Version 20.0.2020.4.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Document.Viewer.WinForms Assembly