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




Replaces the normal Leadtools method for opening a file.

Syntax

Visual Basic (Declaration) 
Public Event RedirectOpen() As EventHandler(Of CodecsRedirectOpenEventArgs)
Visual Basic (Usage)Copy Code
Dim instance As RasterCodecs
Dim handler As EventHandler(Of CodecsRedirectOpenEventArgs)
 
AddHandler instance.RedirectOpen, handler
C# 
public event EventHandler<CodecsRedirectOpenEventArgs> RedirectOpen()
Managed Extensions for C++ 
public: __event EventHandler<CodecsRedirectOpenEventArgs>* RedirectOpen();
C++/CLI 
public:
event EventHandler<CodecsRedirectOpenEventArgs>^ RedirectOpen();

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 opening a file, set your own subscribe to this event then call the StartRedirecting method.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also