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



Indicates the overlay callback mode.

Syntax

Visual Basic (Declaration) 
Public Enum CodecsOverlayCallbackMode 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As CodecsOverlayCallbackMode
C# 
public enum CodecsOverlayCallbackMode : Enum 
C++/CLI 
public enum class CodecsOverlayCallbackMode : public Enum 

Members

MemberDescription
LoadCall First, try loading the overlay image from disk. If the load fails, the __Delegates.CodecsOverlayCallback method will be asked to provide the overlay image.
CallLoad First, call the __Delegates.CodecsOverlayCallback method. If the handler did not supply an overlay image, try loading the overlay image from disk.
CallOnly Call the __Delegates.CodecsOverlayCallback method. If there is no __Delegates.CodecsOverlayCallback method passed, there is no overlay image.
LoadOnly Try to load the overlay image from disk. If the load fails, there is no overlay.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.Codecs.CodecsOverlayCallbackMode

Requirements

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

See Also