Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
Data Event
See Also 
Leadtools.ImageProcessing Namespace > ColorResolutionCommand Class : Data Event




Occurs during the ColorResolutionCommand, to provide the converted data.

Syntax

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

Example

For an example, refer to ColorResolutionCommand

Remarks

You can use this event to handle the converted image data that the ColorResolutionCommand has written to a buffer.

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