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



Gets the buffer containing one or more lines of output image data that the command has already converted.

Syntax

Visual Basic (Declaration)  
Public ReadOnly Property Data As IntPtr
Visual Basic (Usage) Copy Code
Dim instance As ColorResolutionCommandDataEventArgs
Dim value As IntPtr
 
value = instance.Data
C#  
public IntPtr Data {get;}
C++/CLI  
public:
property IntPtr Data {
   IntPtr get();
}

Return Value

The buffer containing one or more lines of output image data that the command has already converted.

Example

For an example, refer to ColorResolutionCommandDataEventArgs

Remarks

This property returns the data in an unmanaged buffer. You can use the Marshal.Copy method to copy this data to a managed buffer.

Requirements

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

See Also