Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
CodecsOverlayCallback Delegate
See Also 
Leadtools.Codecs Namespace : CodecsOverlayCallback Delegate



data
A CodecsOverlayData object that contains information for the callback. Some members of this object are for input, some are for output. For more information, refer to CodecsOverlayData.
Provides a callback method that gets called when loading a file containing an overlay.

Syntax

Visual Basic (Declaration) 
Public Delegate Sub CodecsOverlayCallback( _
   ByVal data As CodecsOverlayData _
) 
Visual Basic (Usage)Copy Code
Dim instance As New CodecsOverlayCallback(AddressOf HandlerMethod)
C# 
public delegate void CodecsOverlayCallback( 
   CodecsOverlayData data
)
C++/CLI 
public delegate void CodecsOverlayCallback( 
   CodecsOverlayData^ data
)

Parameters

data
A CodecsOverlayData object that contains information for the callback. Some members of this object are for input, some are for output. For more information, refer to CodecsOverlayData.

Example

For an example, refer to RasterCodecs.StartOverlay

Remarks

The CodecsOverlayCallback delegate is passed to RasterCodecs.StartOverlay to get the overlay image and other information from the user when loading a file containing an overlay.

Requirements

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

See Also