Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
RedirectSeek Event
See Also 
Leadtools.Codecs Namespace > RasterCodecs Class : RedirectSeek Event



Replaces the normal LEADTOOLS method for seeking into a file.

Syntax

Visual Basic (Declaration) 
Public Event RedirectSeek() As EventHandler(Of CodecsRedirectSeekEventArgs)
Visual Basic (Usage)Copy Code
Dim instance As RasterCodecs
Dim handler As EventHandler(Of CodecsRedirectSeekEventArgs)
 
AddHandler instance.RedirectSeek, handler
C# 
public event EventHandler<CodecsRedirectSeekEventArgs> RedirectSeek()
C++/CLI 
public:
event EventHandler<CodecsRedirectSeekEventArgs>^ RedirectSeek();

Example

For an example, refer to StartRedirecting

Remarks

You can redirect all the toolkit I/O methods to your own I/O methods to load/save images from your own streams.

To replace the normal method for seeking into file, set your own subscribe to this event then call the StartRedirecting method.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also